/**
 * OTOEKO Storefront - Home Content CSS
 * Premium E-Commerce Design System
 * Modern, Clean, Elegant
 * 
 * Design Tokens merkezi dosyadan import ediliyor: storefront-variables.css
 */

@import url('../storefront-variables.css');

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-gray-700);
    background-color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ========================================
   UTILITIES
   ======================================== */
.site-main {
    min-height: 60vh;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 var(--space-8);
    }
}

/* Full Width Container */
.container-fluid {
    width: 100%;
    padding: 0 var(--space-6);
}

@media (min-width: 1200px) {
    .container-fluid {
        padding: 0 var(--space-10);
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    padding: var(--space-3) 0 20px 0;
    background: var(--color-white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 2fr 1fr;
        align-items: stretch;
    }
}

/* Hero Slider - Premium Design */
.hero-slider {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* Swiper overrides for fade effect */
.hero-slider.swiper {
    width: 100%;
}

.hero-slider .swiper-wrapper {
    position: relative;
}

.hero-slider .swiper-slide {
    width: 100% !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slider .swiper-slide-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-slide {
        min-height: 480px;
    }
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.92) 0%, rgba(234, 88, 12, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px;
    max-width: 580px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge [data-lucide] {
    width: 16px;
    height: 16px;
}

.hero-badge.sale {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: none;
}

.hero-badge.new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
}

/* Hero Title */
.hero-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-title span {
    display: block;
    color: #fff;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 44px;
    }
}

/* Hero Description */
.hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.btn [data-lucide] {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: #fff;
    color: #ea580c;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: #f9fafb;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Swiper Navigation */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
    color: #ea580c;
}

.hero-slider .swiper-button-prev {
    left: 20px;
}

.hero-slider .swiper-button-next {
    right: 20px;
}

/* Swiper Pagination */
.hero-slider .swiper-pagination {
    bottom: 20px;
}

.hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 5px;
    background: #fff;
}

/* Progress Bar */
.swiper-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.swiper-progress-bar {
    height: 100%;
    background: #fff;
    width: 0;
    transition: width 0.1s linear;
}

/* Hero Banners */
.hero-banners {
    display: grid;
    gap: var(--space-4);
    grid-template-rows: 1fr 1fr;
    height: 100%;
}

.hero-banner {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero-banner:hover {
    box-shadow: var(--shadow-xl);
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
}

.hero-banner-content {
    position: relative;
    z-index: 1;
    padding: var(--space-6);
    width: 100%;
}

.hero-banner-badge {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: var(--color-accent);
    color: var(--color-white);
    font-size: var(--font-size-xs);
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-2);
}

.hero-banner h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-1);
}

.hero-banner p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: var(--space-4) 0;
    background: var(--color-white);
    margin-top: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #fed7aa 100%);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-xl);
    color: var(--color-primary-hover);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: var(--space-1);
}

.feature-text p {
    font-size: var(--font-size-xs);
    color: var(--color-gray-500);
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section {
    padding: var(--space-12) 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
    gap: var(--space-4);
}

.section-title {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--color-gray-900);
}

.section-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: gap var(--transition-fast);
}

.section-link:hover {
    gap: var(--space-3);
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-6);
    background: var(--color-white);
    border: 2px solid var(--color-gray-100);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.category-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    font-size: var(--font-size-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-4);
    transition: transform var(--transition-base);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-name {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: var(--space-1);
}

.category-count {
    font-size: var(--font-size-xs);
    color: var(--color-gray-500);
}

/* ========================================
   PRODUCTS GRID
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ========================================
   PRODUCT CARD
   ======================================== */
.product-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition-base);
}

.product-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    padding-top: 100%;
    background: var(--color-gray-50);
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--space-4);
    transition: transform var(--transition-slow);
}

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

.product-badges {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.product-badge {
    padding: var(--space-1) var(--space-2);
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.product-badge.sale {
    background: var(--color-danger);
    color: var(--color-white);
}

.product-badge.new {
    background: var(--color-success);
    color: var(--color-white);
}

/* Eski product-actions kaldÄ±rÄ±ldÄ± - yeni versiyon aÅŸaÄŸÄ±da */

.product-action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--color-gray-600);
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
}

.product-action-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.product-content {
    padding: var(--space-4);
}

.product-category {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-2);
}

.product-title {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-gray-800);
    line-height: 1.4;
    margin-bottom: var(--space-2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

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

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.product-stars {
    display: flex;
    gap: 2px;
    color: var(--color-warning);
    font-size: var(--font-size-xs);
}

.product-rating-count {
    font-size: var(--font-size-xs);
    color: var(--color-gray-400);
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.product-price-current {
    font-size: var(--font-size-lg);
    font-weight: 800;
    color: var(--color-primary-hover);
}

.product-price-old {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    text-decoration: line-through;
}

.product-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    width: 100%;
    padding: var(--space-3);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.product-add-btn:hover {
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary-dark) 100%);
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.4);
}

/* ========================================
   PROMO SECTION
   ======================================== */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .promo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.promo-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-base);
}

.promo-card:hover {
    transform: scale(1.02);
}

.promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.promo-content {
    position: relative;
    z-index: 1;
    padding: var(--space-8);
    width: 100%;
}

.promo-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--font-size-xs);
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.promo-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.promo-card p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-5);
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--color-white);
    color: var(--color-gray-900);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

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

/* ========================================
   BRANDS SECTION
   ======================================== */
.brands-slider {
    padding: var(--space-4) 0;
}

.brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    background: var(--color-gray-50);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.brand-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.brand-card img {
    max-height: 40px;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

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

/* ========================================
   FOOTER - Premium Light Theme
   ======================================== */
.site-footer {
    margin-top: 0;
}

/* Footer Banner */
.footer-banner {
    margin-bottom: 20px;
}

.footer-banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #fef3e2 0%, #fef9f3 100%);
    border: 1px solid rgba(251, 146, 60, 0.15);
    border-radius: var(--radius-full);
    padding: 8px var(--space-5);
}

.footer-banner-content span {
    color: var(--color-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--font-size-base);
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Footer Main */
.footer-main {
    background: #ffffff;
    padding: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        column-gap: 2%;
    }
    
    .footer-grid > * {
        min-width: 0;
    }
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    padding-top: 30px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 0;
}

.footer-tagline {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.5;
}

.footer-tagline-en {
    margin: 0;
    font-size: 13px;
    font-style: italic;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.5;
}

.footer-social {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social > span {
    font-size: 13px;
    font-weight: 800;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer-social-icons a:nth-child(1) {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.footer-social-icons a:nth-child(2) {
    background: #1DA1F2;
    color: #fff;
}

.footer-social-icons a:nth-child(3) {
    background: #FF0000;
    color: #fff;
}

.footer-social-icons a:nth-child(4) {
    background: #0088cc;
    color: #fff;
}

.footer-social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-brand {
    padding-top: 30px;
    padding-bottom: 20px;
}

.footer-col h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    width: 100%;
}

.footer-col h4 [data-lucide] {
    width: 18px;
    height: 18px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.footer-col ul li {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1.6;
}

.footer-col ul li a i {
    font-size: 8px;
    color: #9ca3af;
    transition: all 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--color-primary);
}

.footer-col ul li a:hover i {
    color: var(--color-primary);
    transform: translateX(3px);
}

/* Footer Support */
.footer-support {
    min-width: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-support h4 {
    font-size: 13px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 0;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #ffffff;
    border-radius: 12px;
    border: 1.5px solid #fed7aa;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: visible;
    position: relative;
}

.support-card:hover {
    transform: translateY(-3px);
}

.support-whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.support-phone:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(251, 146, 60, 0.25);
}

.support-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.support-card:hover .support-icon {
    transform: scale(1.1);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.phone-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(251, 146, 60, 0.3);
}

.phone-icon [data-lucide] {
    width: 22px;
    height: 22px;
}

.support-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    align-items: flex-start;
    min-width: 0;
    overflow: hidden;
}

.support-label {
    font-size: 10px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.support-text {
    font-size: 14px;
    font-weight: 700;
    color: #25D366;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.support-whatsapp:hover .support-text {
    color: #128C7E;
}

.support-phone-number {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.5px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: nowrap;
    display: block;
    max-width: 100%;
    transition: color 0.2s ease;
}

.support-phone:hover .support-phone-number {
    color: var(--color-primary-dark);
}

.support-arrow {
    width: 18px;
    height: 18px;
    color: #d1d5db;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.support-card:hover .support-arrow {
    color: var(--color-primary);
    transform: translateX(4px);
}

.support-whatsapp:hover .support-arrow {
    color: #25D366;
}

.support-divider {
    display: flex;
    align-items: center;
    margin: 4px 0;
    position: relative;
}

.support-divider::before,
.support-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.support-divider span {
    padding: 0 14px;
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: #ffffff;
    position: relative;
}

/* Payment Section */
.footer-payment {
    background: #fef6ee;
    padding: 25px 0;
    border-top: 1px solid #fed7aa;
    border-bottom: 1px solid #fed7aa;
}

.footer-payment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .footer-payment-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.payment-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .payment-left {
        flex-direction: row;
        gap: 24px;
    }
}

.payment-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
}

.payment-title i {
    color: var(--color-primary);
    font-size: 14px;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-logo {
    height: 32px;
    width: auto;
    transition: transform 0.2s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.payment-logo.visa {
    height: 20px;
    padding: 6px 10px;
}

.payment-logo.mastercard {
    height: 32px;
    padding: 4px 10px;
}

.payment-logo.troy {
    height: 24px;
    padding: 5px 10px;
}

.payment-logo.amex {
    height: 28px;
    padding: 4px 10px;
}

.payment-logo:hover {
    transform: scale(1.05);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

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

.ssl-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #ffffff;
    border: 2px solid #22c55e;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(34, 197, 94, 0.1);
}

.ssl-badge i {
    font-size: 20px;
    color: #22c55e;
}

.ssl-badge div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ssl-badge strong {
    font-size: 12px;
    font-weight: 800;
    color: #22c55e;
    line-height: 1.2;
}

.ssl-badge span {
    font-size: 9px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    padding-bottom: 8px;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #fef3e2 0%, #fef9f3 100%);
    border: 1px solid rgba(251, 146, 60, 0.15);
    border-radius: var(--radius-full);
    padding: 8px var(--space-5);
}

.footer-bottom-content p {
    margin: 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.3px;
    line-height: 1.5;
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-white);
    border-radius: 50%;
    font-size: var(--font-size-lg);
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary-dark) 100%);
}

/* ========================================
   SWIPER CUSTOMIZATION
   ======================================== */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--color-white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-white);
    width: 24px;
    border-radius: var(--radius-full);
}

/* ========================================
   PRODUCTS GRID - 5 Column Layout
   ======================================== */
.products-main-section {
    background: var(--color-white);
    padding: var(--space-4) 0;
}

.products-grid-5col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 640px) {
    .products-grid-5col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid-5col {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .products-grid-5col {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Product Card V2 - Premium Design */
.product-card-v2 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-v2:hover {
    border-color: #f97316;
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.15);
    transform: translateY(-4px);
}

.product-card-v2:hover::before {
    opacity: 1;
}

/* Product Image */
.product-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Product Badge */
.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 20px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
}

.product-badge.sale {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
}

.product-badge.new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

/* Quick Actions */
.product-quick-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

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

.quick-action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-action-btn:hover {
    background: #f97316;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}

.quick-action-btn [data-lucide] {
    width: 18px;
    height: 18px;
    color: #6b7280;
}

.quick-action-btn:hover [data-lucide] {
    color: #fff;
}

/* Product Info */
.product-info {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    text-align: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.product-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stok Kodu */
.product-sku {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.3px;
}

.product-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
    text-align: center;
    transition: color 0.3s ease;
}

.product-name:hover {
    color: #f97316;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.product-rating .stars {
    display: flex;
    gap: 2px;
}

.product-rating .stars [data-lucide] {
    width: 14px;
    height: 14px;
    color: #d1d5db;
}

.product-rating .stars [data-lucide].filled {
    color: #fbbf24;
    fill: #fbbf24;
}

.rating-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #9ca3af;
}

/* Product Price */
.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2px;
    margin-bottom: 0;
}

.old-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #9ca3af;
    text-decoration: line-through;
}

.current-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #f97316;
    letter-spacing: -0.3px;
}

/* Product Actions - Sepete Ekle + HÄ±zlÄ± BakÄ±ÅŸ */
.product-actions {
    display: flex;
    gap: 6px;
    width: 100%;
    margin-top: 4px;
}

/* Add to Cart Button - %80 */
.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

/* Hover'da sepet ikonu gÃ¶ster, yeÅŸil renk */
.add-to-cart-btn [data-lucide] {
    display: none;
    width: 16px;
    height: 16px;
}

.add-to-cart-btn:hover:not(:disabled) [data-lucide] {
    display: block;
}

.add-to-cart-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.add-to-cart-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

/* Quick View Button - %20 */
.quick-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    padding: 12px;
    background: #f9fafb;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-view-btn:hover {
    background: #f97316;
    border-color: #f97316;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.quick-view-btn [data-lucide] {
    width: 16px;
    height: 16px;
}

.add-to-cart-btn [data-lucide] {
    width: 16px;
    height: 16px;
}

/* ========================================
   LOADING & EMPTY STATES
   ======================================== */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-16);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-gray-200);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.empty-state {
    text-align: center;
    padding: var(--space-16);
}

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

.empty-state h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-gray-700);
    margin-bottom: var(--space-2);
}

.empty-state p {
    color: var(--color-gray-500);
}


/* ========================================
   OUT OF STOCK OVERLAY
   ======================================== */
.out-of-stock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.out-of-stock-overlay span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    background: rgba(239, 68, 68, 0.9);
    padding: 8px 16px;
    border-radius: 8px;
}

.out-of-stock-overlay [data-lucide] {
    width: 16px;
    height: 16px;
}

/* Product Card V2 - Disabled State */
.product-card-v2.out-of-stock {
    opacity: 0.7;
}

.product-card-v2.out-of-stock .add-to-cart-btn {
    background: #9ca3af;
    cursor: not-allowed;
}

.product-card-v2.out-of-stock .add-to-cart-btn:hover {
    background: #9ca3af;
    box-shadow: none;
}

/* ========================================
   PRODUCT IMAGE FALLBACK
   ======================================== */
.product-image-wrapper img[src$="no-image.svg"],
.product-image img[src$="no-image.svg"] {
    padding: 32px;
    opacity: 0.5;
}


/* ========================================
   PRODUCT CARD IMAGE SLIDER (Hover)
   ======================================== */

/* Image Dots Indicator */
.image-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-v2:hover .image-dots {
    opacity: 1;
}

.image-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    cursor: pointer;
}

.image-dots .dot.active {
    background: #f97316;
    border-color: #f97316;
    transform: scale(1.2);
}

.image-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Image transition effect */
.product-image-wrapper img {
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.product-image-wrapper img.fade-out {
    opacity: 0;
}

/* Product name - daha fazla satÄ±r gÃ¶ster */
.product-card-v2 .product-name {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    min-height: 42px;
}


/* ========================================
   QUICK VIEW MODAL
   ======================================== */
.quick-view-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quick-view-modal.active {
    opacity: 1;
    visibility: visible;
}

.quick-view-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.quick-view-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.quick-view-modal.active .quick-view-content {
    transform: scale(1) translateY(0);
}

.quick-view-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.quick-view-close:hover {
    background: #ef4444;
    color: #fff;
}

.quick-view-close [data-lucide] {
    width: 20px;
    height: 20px;
}

.quick-view-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-height: 90vh;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .quick-view-body {
        grid-template-columns: 1fr;
    }
}

/* Quick View Image */
.quick-view-image {
    position: relative;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    min-height: 400px;
}

.quick-view-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.quick-view-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
}

/* Quick View Details */
.quick-view-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: 'Montserrat', sans-serif;
}

.quick-view-sku {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
}

.quick-view-title {
    font-size: 22px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.3;
}

.quick-view-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-view-price .old-price {
    font-size: 18px;
    font-weight: 600;
    color: #9ca3af;
    text-decoration: line-through;
}

.quick-view-price .current-price {
    font-size: 28px;
    font-weight: 800;
    color: #f97316;
}

.quick-view-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.quick-view-stock.in-stock {
    color: #10b981;
}

.quick-view-stock.out-of-stock {
    color: #ef4444;
}

.quick-view-stock [data-lucide] {
    width: 18px;
    height: 18px;
}

.quick-view-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    max-height: 100px;
    overflow-y: auto;
}

.quick-view-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.quick-view-actions .add-to-cart-btn {
    flex: 1;
    padding: 14px 20px;
    font-size: 14px;
}

.quick-view-actions .view-details-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: #1f2937;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.quick-view-actions .view-details-btn:hover {
    background: #374151;
}

.quick-view-actions .view-details-btn [data-lucide] {
    width: 16px;
    height: 16px;
}

/* Quick View Loading */
.quick-view-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.quick-view-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top-color: #f97316;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
