/* SFSTicaret - Main Stylesheet */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2c3e50;
    --color-secondary: #34495e;
    --color-accent: #95a5a6;
    --color-text: #333;
    --color-text-light: #666;
    --color-border: #e0e0e0;
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-gray: #f5f5f5;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

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

a:hover {
    color: var(--color-accent);
}

/* Top Banner - Header Üstü */
.htop {
    width: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e5e7eb;
}

.ht1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 1.25rem;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(12px, 2vw, 14px);
    text-align: left;
    white-space: nowrap;
    color: #1e293b;
}

.ht-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.customer-support-link {
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(12px, 2vw, 13px);
    transition: all 0.2s ease;
}

.customer-support-link:hover {
    color: #475569;
}

.customer-support-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.customer-support-link span {
    white-space: nowrap;
}

/* Header */
.header {
    background: #163f3e;
    border-bottom: 1px solid #163f3e;
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
}

.header,
.header a,
.header .customer-support-link,
.header .customer-support-link span,
.header .customer-support-link svg,
.header .cart-icon {
    color: #ffffff;
}

.header .customer-support-link:hover {
    color: #f3f4f6;
}

/* Mobile Menu Toggle Button - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Dark header için mobil menü ikonunu beyaz yap */
.header .mobile-menu-toggle span {
    background: #ffffff;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.logo h1 {
    margin: 0;
    font-size: 1.8rem;
    letter-spacing: -1px;
    color: #ffffff;
}

.header-search {
    flex: 0 0 auto;
    width: 200px;
    max-width: 200px;
    min-width: 200px;
    margin: 0 var(--spacing-sm);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.cart-icon:hover {
    background: var(--color-bg-gray);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Header içindeki sepet ikonu için koyu header'a uygun hover */
.header .cart-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.cart-icon svg {
    width: 24px;
    height: 24px;
}

.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.4);
}

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

.search-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 4px;
}

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

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f8fafc;
    color: var(--color-primary);
}

.search-result-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    background: var(--color-bg-gray);
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-weight: 500;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-price {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-primary);
}

.search-result-category {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.search-no-results {
    padding: 1rem;
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.search-input {
    flex: 1;
    padding: 0.6rem 2.5rem 0.6rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.search-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
}

.search-icon-button {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: var(--transition);
}

.search-icon-button:hover {
    color: var(--color-primary);
}

.search-icon-button svg {
    width: 18px;
    height: 18px;
}

.main-nav {
    display: flex;
    gap: var(--spacing-sm);
    flex: 1;
    justify-content: center;
    align-items: center;
}

/* Mobile Menu Styles */
.main-nav.mobile-menu-active {
    display: flex;
}

.main-nav .nav-item-wrapper {
    position: relative;
}


.nav-item-wrapper {
    position: relative;
}

.main-nav .nav-link {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    display: block;
    color: #ffffff;
}

.main-nav .nav-link:hover {
    color: #f3f4f6;
}

/* Desktop: Show mega menu on hover */
@media (min-width: 769px) {
    .nav-item-wrapper.has-dropdown:hover .mega-menu,
    .nav-item-wrapper.has-dropdown .mega-menu:hover {
        display: block;
    }
    
    .nav-item-wrapper.has-dropdown .nav-link::after {
        display: none;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.cart-icon:hover {
    background: var(--color-bg-gray);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.cart-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    text-align: center;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.4);
    border: 2px solid white;
}

/* Mega Menu */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 600px;
    padding: var(--spacing-md);
    z-index: 1000;
    margin-top: 0;
    padding-top: calc(var(--spacing-md) + 5px);
}


/* Invisible bridge to prevent hover gap */
.nav-item-wrapper.has-dropdown .mega-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: transparent;
}

.mega-menu-content {
    display: block;
}

.mega-menu-left {
    display: flex;
    flex-direction: column;
}

.mega-menu-title {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.mega-menu-title a {
    color: var(--color-primary);
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: var(--spacing-xs);
}

.mega-menu-list a {
    color: var(--color-text);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    display: block;
}

.mega-menu-list a:hover {
    color: var(--color-primary);
    padding-left: 0.5rem;
}

.mega-menu-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-menu-image {
    width: 100%;
    position: relative;
}

.mega-menu-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.mega-menu-image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    text-align: center;
    font-weight: 500;
}

/* Social Media */
.social-media {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-link {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Banner Swiper Styles */
.hero-slider {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.bannerSwiper {
    width: 100%;
    height: 330px;
    border-radius: 20px;
    overflow: hidden;
}

.bannerSwiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
}

.bannerSwiper .swiper-button-next,
.bannerSwiper .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.bannerSwiper .swiper-button-next:hover,
.bannerSwiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
}

.bannerSwiper .swiper-button-next:after,
.bannerSwiper .swiper-button-prev:after {
    font-size: 24px;
    font-weight: 700;
}

.bannerSwiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.bannerSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
}

/* Buttons - Modern Design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: 1px solid transparent;
    background: var(--color-primary);
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9375rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 6px;
    min-height: 38px;
    line-height: 1.5;
    text-decoration: none;
}

.btn:hover {
    background: #1e2d3d;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.2);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(44, 62, 80, 0.15);
}

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

.btn-primary:hover {
    background: #1e2d3d;
    border-color: #1e2d3d;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    min-height: 44px;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-height: 32px;
}

.btn-block {
    width: 100%;
    display: flex;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section */
.hero {
    background: var(--color-bg-gray);
    padding: var(--spacing-xl) var(--spacing-sm);
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: white;
}

.hero.hero-no-overlay::before {
    display: none;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hero section on blue/dark backgrounds – white text & contrasting button */
.hero {
    color: #ffffff;
}

.hero .hero-title,
.hero .hero-text {
    color: #ffffff;
}

.hero .btn,
.hero .btn-primary {
    background-color: #ffffff;
    color: #0d47a1;
    border-color: #ffffff;
}

.hero .btn:hover,
.hero .btn-primary:hover {
    background-color: #e3f2fd;
    color: #0d47a1;
}

/* Sections */
.section {
    padding: var(--spacing-lg) 0;
}

.section-gray {
    background: var(--color-bg-gray);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.products-grid > * {
    min-width: 0; /* Prevent grid overflow */
}

.products-grid.products-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    background: var(--color-bg);
    transition: var(--transition);
    border: 1px solid var(--color-border);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

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

/* Product Image - Single Image (Related Products, etc.) */
.product-image {
    display: block;
    width: 100%;
    max-width: 100%;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--color-bg-gray);
    box-sizing: border-box;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    box-sizing: border-box;
    transition: var(--transition);
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 1 / 1) {
    .product-image {
        aspect-ratio: unset;
        padding-bottom: 100%;
        height: 0;
    }
}

.product-image-link {
    display: block;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    background: var(--color-bg-gray);
}

.product-card:hover .product-image img,
.product-card:hover .product-image-static img,
.product-card:hover .product-image-link img {
    transform: scale(1.05);
}

.product-card:hover [class*="productImageSwiper"] .swiper-slide img,
.product-card:hover [class*="bestSellerSwiper"] .swiper-slide img {
    transform: scale(1.05);
}

/* Product Image Container - Base Styles */
/* Static Image Container (Single Image) */
.product-image-static {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    background: var(--color-bg-gray);
}

.product-image-static img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

/* Product Image Swiper Container (Multiple Images) */
[class*="productImageSwiper"] {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1; /* Modern aspect-ratio */
    overflow: hidden;
    background: var(--color-bg-gray);
    box-sizing: border-box;
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 1 / 1) {
    [class*="productImageSwiper"] {
        aspect-ratio: unset;
        padding-bottom: 100%; /* 1:1 aspect ratio - creates height */
        height: 0;
    }
}

[class*="productImageSwiper"] > .swiper-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    box-sizing: border-box;
}

[class*="productImageSwiper"] .swiper-slide {
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
}

[class*="productImageSwiper"] .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
    box-sizing: border-box;
    transition: var(--transition);
}

.product-card:hover [class*="productImageSwiper"] .swiper-slide img {
    transform: scale(1.05);
}

[class*="productImageSwiper"] .swiper-pagination {
    position: absolute;
    bottom: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10;
    width: auto !important;
}

[class*="productImageSwiper"] .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
    width: 8px;
    height: 8px;
    margin: 0 3px;
}

[class*="productImageSwiper"] .swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
    width: 10px;
    height: 10px;
}

/* Best Seller Swiper Container (Multiple Images) */
[class*="bestSellerSwiper"] {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1; /* Modern aspect-ratio */
    overflow: hidden;
    background: var(--color-bg-gray);
    box-sizing: border-box;
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 1 / 1) {
    [class*="bestSellerSwiper"] {
        aspect-ratio: unset;
        padding-bottom: 100%; /* 1:1 aspect ratio - creates height */
        height: 0;
    }
}

[class*="bestSellerSwiper"] > .swiper-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    box-sizing: border-box;
}

[class*="bestSellerSwiper"] .swiper-slide {
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
}

[class*="bestSellerSwiper"] .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
    box-sizing: border-box;
    transition: var(--transition);
}

.product-card:hover [class*="bestSellerSwiper"] .swiper-slide img {
    transform: scale(1.05);
}

[class*="bestSellerSwiper"] .swiper-pagination {
    position: absolute;
    bottom: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10;
    width: auto !important;
}

[class*="bestSellerSwiper"] .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
    width: 8px;
    height: 8px;
    margin: 0 3px;
}

[class*="bestSellerSwiper"] .swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
    width: 10px;
    height: 10px;
}

/* Product Image Slider */
.product-image-slider {
    position: relative;
}

.product-image-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.product-image-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-dots {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.25rem;
    z-index: 5;
}

.product-image-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.product-image-dot.active {
    background: white;
    width: 8px;
    height: 8px;
}

.product-info {
    padding: var(--spacing-sm);
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.product-name a {
    color: var(--color-text);
}

.product-name a:hover {
    color: var(--color-accent);
}

.product-category {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xs);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.compare-price {
    font-size: 0.9rem;
    color: var(--color-text-light);
    text-decoration: line-through;
    margin-left: var(--spacing-xs);
}

/* Product Detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product-detail > * {
    min-width: 0; /* Prevent grid overflow - critical for Swiper */
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    min-width: 0; /* Prevent flex overflow */
    max-width: 100%;
}

.product-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--color-bg-gray);
    border-radius: 4px;
}

.product-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.product-slider-slide {
    min-width: 100%;
    aspect-ratio: 1;
}

.product-slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    padding: var(--spacing-sm);
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slider-nav:hover {
    background: white;
}

.product-slider-nav.prev {
    left: var(--spacing-sm);
}

.product-slider-nav.next {
    right: var(--spacing-sm);
}

.product-slider-dots {
    position: absolute;
    bottom: var(--spacing-sm);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-xs);
    z-index: 10;
}

.product-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
}

.product-slider-dot.active {
    background: white;
}

.main-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-bg-gray);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-thumbnails {
    display: flex;
    gap: var(--spacing-xs);
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail:hover {
    border-color: #64748b;
}

/* Product Detail Page - Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    min-width: 0; /* Prevent grid overflow */
    max-width: 100%;
}

/* Main Gallery Container */
.product-gallery-main {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1; /* Modern aspect-ratio instead of padding-bottom */
    overflow: hidden;
    background: var(--color-bg-gray);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    contain: layout size style; /* Performance optimization */
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 1 / 1) {
    .product-gallery-main {
        aspect-ratio: unset;
        padding-bottom: 100%;
        height: 0;
    }
}

/* Force container dimensions - prevent Swiper from calculating wrong sizes */
.product-gallery-main,
.productMainSwiper {
    min-width: 0 !important;
    min-height: 0 !important;
}

/* Main Swiper Container */
.productMainSwiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    box-sizing: border-box;
    overflow: hidden;
}

.productMainSwiper .swiper-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    box-sizing: border-box;
}

.productMainSwiper .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
}

.product-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-gray);
    box-sizing: border-box;
    overflow: hidden;
}

.product-image-container img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
    object-fit: contain;
    display: block;
    box-sizing: border-box;
}

/* Main Swiper Navigation Buttons */
.productMainSwiper .swiper-button-next,
.productMainSwiper .swiper-button-prev {
    color: #475569;
    background: rgba(255, 255, 255, 0.95);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}

.productMainSwiper .swiper-button-next:after,
.productMainSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.productMainSwiper .swiper-button-next:hover,
.productMainSwiper .swiper-button-prev:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    color: #334155;
    transform: translateY(-50%) scale(1.1);
}

.productMainSwiper .swiper-button-prev {
    left: 15px;
}

.productMainSwiper .swiper-button-next {
    right: 15px;
}

/* Main Swiper Pagination */
.productMainSwiper .swiper-pagination {
    bottom: 20px !important;
    z-index: 10;
}

.productMainSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    opacity: 0.8;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.productMainSwiper .swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
    width: 24px;
    border-radius: 5px;
}

/* Thumbnail Gallery Container */
.product-gallery-thumbs {
    width: 100%;
    max-width: 100%;
    margin-top: 0.5rem;
    box-sizing: border-box;
}

.productThumbsSwiper {
    width: 100%;
    max-width: 100%;
    height: 100px;
    padding: 5px 0;
    box-sizing: border-box;
}

.productThumbsSwiper .swiper-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.productThumbsSwiper .swiper-slide {
    height: 100%;
    width: auto;
    position: relative;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    flex-shrink: 0;
    box-sizing: border-box;
}

.productThumbsSwiper .swiper-slide:hover {
    opacity: 0.8;
}

.productThumbsSwiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #64748b;
    box-shadow: 0 2px 8px rgba(100, 116, 139, 0.3);
}

.product-thumb-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: var(--color-bg-gray);
    border-radius: 4px;
    overflow: hidden;
    box-sizing: border-box;
}

.productThumbsSwiper .swiper-slide img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-sizing: border-box;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .productMainSwiper .swiper-button-next,
    .productMainSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .productMainSwiper .swiper-button-next:after,
    .productMainSwiper .swiper-button-prev:after {
        font-size: 16px;
    }

    .productMainSwiper .swiper-button-prev {
        left: 10px;
    }

    .productMainSwiper .swiper-button-next {
        right: 10px;
    }

    .productThumbsSwiper {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .productThumbsSwiper {
        height: 70px;
    }
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.product-title {
    font-size: 2rem;
}

.product-meta {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.product-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.quantity-selector input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
}

.product-specifications {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--color-border);
}

.product-specifications h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.spec-group {
    margin-bottom: var(--spacing-md);
}

.spec-group-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.spec-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.spec-value-badge {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.spec-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.spec-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    user-select: none;
}

.spec-value-badge:hover .spec-badge {
    border-color: var(--color-primary);
    background: var(--color-bg-light);
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.spec-radio:checked + .spec-badge {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
}

.spec-radio:focus + .spec-badge {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.product-description {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

/* Products Layout */
.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

/* Products Search */
.products-search-container {
    margin-bottom: 1.5rem;
}

.products-search-form .input-group {
    display: flex;
    width: 100%;
}

.products-search-form .input-group {
    max-width: 500px;
}

.products-search-form .form-control {
    flex: 1;
    border: 2px solid #e0e6ed;
    border-right: none;
    border-radius: 0.5rem 0 0 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.products-search-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
    outline: none;
}

.products-search-form .btn {
    border: 2px solid #007bff;
    border-left: none;
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.products-search-form .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Filter Block - Modern E-commerce Style */
.leftBlock {
    width: 100%;
}

.Block_item.filterBlock {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
}

.Block_item.filterBlock::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.01) 100%);
    pointer-events: none;
    z-index: 0;
    border-radius: 12px;
}

.Block_item.filterBlock > * {
    position: relative;
    z-index: 1;
}

.Block_Title {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.Block_Title span {
    font-weight: 700;
    font-size: 0.9375rem;
    color: #1e293b;
    text-transform: none;
    letter-spacing: -0.025em;
}

.Block_Text {
    padding: 0;
    background: #ffffff;
}

.Block_Alt {
    display: none;
}

/* Vertical Filter Panels - Always Open */
.category-vertical-filters {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

.vertical-filter-panel {
    border: none;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 0;
    background: #ffffff;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.vertical-filter-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.015) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

.vertical-filter-panel > * {
    position: relative;
    z-index: 1;
}

.vertical-filter-panel:last-child {
    border-bottom: none;
}

.panel-heading {
    padding: 0.625rem 1rem;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.panel-title {
    font-weight: 700;
    font-size: 0.75rem;
    color: #1e293b;
    text-decoration: none;
    display: block;
    flex: 1;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Category List - Always Visible, No Dropdown */
.list-group {
    list-style: none;
    padding: 0.5rem 1rem;
    margin: 0;
}

.list-group.kategori {
    background: #ffffff;
    padding: 0.25rem 0;
}

.list-group.kategori > li {
    margin: 0;
    position: relative;
}

.list-group.kategori > li:last-child {
    border-bottom: none;
}

/* Parent Category */
.list-group.kategori > li.category-parent {
    margin-bottom: 0.125rem;
}

.list-group.kategori > li.category-parent > a {
    display: flex;
    align-items: center;
    padding: 0.625rem 1rem;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 4px;
    margin: 1px 0;
}

.list-group.kategori > li.category-parent > a:hover {
    background: #f8fafc;
    color: #1e293b;
}

.list-group.kategori > li.category-parent.active > a {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(100, 116, 139, 0.3);
}

/* Subcategories - Always Visible, Subtle Style */
.list-group.kategori > li.category-parent > ul.category-children {
    list-style: none;
    padding: 0.125rem 0 0.25rem 1.75rem;
    margin: 0;
    background: transparent;
    border-left: 1px solid #e2e8f0;
    border-radius: 0;
}

.list-group.kategori > li.category-parent > ul.category-children > li.category-child {
    margin: 0.0625rem 0;
    border-bottom: none;
}

.list-group.kategori > li.category-parent > ul.category-children > li.category-child > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.375rem 0.75rem;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.8125rem;
    font-weight: 400;
    border-radius: 4px;
    position: relative;
}

/* Category Product Count Badge */
.category-product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 20px;
    padding: 0 6px;
    background: #64748b;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 10px;
    margin-left: auto;
    line-height: 1;
    flex-shrink: 0;
}

.list-group.kategori > li.category-parent > ul.category-children > li.category-child > a:hover .category-product-badge {
    background: #475569;
}

/* Badge rengi active durumunda da normal halindeki gibi kalır */
.list-group.kategori > li.category-parent > ul.category-children > li.category-child.active > a .category-product-badge {
    background: #64748b;
    color: #ffffff;
}

.list-group.kategori > li.category-parent > ul.category-children > li.category-child > a:hover {
    background: #f8fafc;
    color: #475569;
}

.list-group.kategori > li.category-parent > ul.category-children > li.category-child.active > a {
    background: #f1f5f9;
    color: #475569;
    font-weight: 600;
}

.list-group.kategori > li.category-parent > ul.category-children > li.category-child.active > a::before {
    color: #94a3b8;
}

/* Price Range Slider - Modern Style */
.FiyatSlider {
    padding: 0.875rem 1rem;
    background: #ffffff;
    position: relative;
    z-index: 3;
}

.slider-range {
    position: relative;
    height: 6px;
    background: #e2e8f0;
    border-radius: 6px;
    margin: 1rem 0 0.75rem 0;
    cursor: pointer;
    z-index: 3;
}

.ui-slider-range {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #64748b 0%, #475569 100%);
    border-radius: 6px;
    z-index: 3;
}

.ui-slider-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 3px solid #64748b;
    border-radius: 50%;
    cursor: grab;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(100, 116, 139, 0.4);
    transition: all 0.2s ease;
}

.ui-slider-handle:hover {
    transform: translateY(-50%) scale(1.25);
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.6);
    border-color: #475569;
    z-index: 11;
}

.ui-slider-handle:active {
    cursor: grabbing;
    transform: translateY(-50%) scale(1.15);
    z-index: 11;
}

.amount {
    text-align: center;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9375rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* Filter List Items - Modern Checkbox Style */
.list-group-item {
    padding: 0;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-item:hover {
    background: #f8fafc;
}

.list-group-item.active {
    background: #f1f5f9;
}

.list-group-item.active a {
    color: #1e293b;
}

.list-group-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.5rem 0.875rem 0.5rem 2.875rem;
    border-radius: 4px;
    margin: 1px 0;
    transition: all 0.2s ease;
    position: relative;
}

.list-group-item a::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    width: 14px;
    height: 14px;
    border: 2px solid #cbd5e1;
    border-radius: 3px;
    background: #ffffff;
    transition: all 0.2s ease;
}

.list-group-item.active a::before {
    background: #64748b;
    border-color: #64748b;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.list-group-item:hover a {
    background: #f8fafc;
    color: #1e293b;
}

.list-group-item.active a {
    background: #f1f5f9;
    color: #1e293b;
    font-weight: 600;
}

.list-group-item .starItem {
    color: #fbbf24;
    font-size: 1rem;
    display: inline-block;
    filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}

.list-group-item.active .starItem {
    color: #f59e0b;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.4));
}

/* Snow Effect - Kış Teması */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    animation: snowfall linear infinite;
    pointer-events: none;
    user-select: none;
}

@keyframes snowfall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(var(--drift)) rotate(360deg);
        opacity: 0;
    }
}

.snowflake:nth-child(3n) {
    animation-duration: 10s;
    animation-delay: -2s;
}

.snowflake:nth-child(3n+1) {
    animation-duration: 12s;
    animation-delay: -4s;
}

.snowflake:nth-child(3n+2) {
    animation-duration: 14s;
    animation-delay: -6s;
}

.snowflake:nth-child(5n) {
    animation-duration: 15s;
    animation-delay: -1s;
}

.snowflake:nth-child(7n) {
    animation-duration: 18s;
    animation-delay: -3s;
}

/* Filters Sidebar (Legacy) */
.filters-sidebar {
    background: var(--color-bg-gray);
    padding: var(--spacing-md);
    height: fit-content;
}

.filter-group {
    margin-bottom: var(--spacing-md);
}

.filter-group h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.filter-option {
    padding: var(--spacing-xs) 0;
    color: var(--color-text);
}

.filter-option.active {
    font-weight: 600;
    color: var(--color-primary);
}

.price-filter {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.price-inputs input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
}

/* Cart */
.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

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

.cart-table th,
.cart-table td {
    padding: var(--spacing-sm);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cart-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.cart-item-info {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.cart-quantity {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
}

.cart-summary {
    background: var(--color-bg-gray);
    padding: var(--spacing-md);
    height: fit-content;
}

.cart-total h3 {
    margin-bottom: var(--spacing-md);
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
}

.total-row.total-final {
    border-top: 1px solid var(--color-border);
    padding-top: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Cart Remove Button */
.btn-remove {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #ef4444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.btn-remove:hover {
    background: #fee2e2;
    color: #dc2626;
    transform: scale(1.1);
}

.btn-remove svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* Cart Continue Button Spacing */
.cart-continue-btn {
    margin-top: 1rem;
}

/* Cart Summary Button Spacing */
.cart-total .btn:not(:last-child) {
    margin-bottom: 1rem;
}

/* Checkout */
.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

.checkout-form-section {
    background: var(--color-bg);
    padding: var(--spacing-md);
}

.checkout-summary {
    background: var(--color-bg-gray);
    padding: var(--spacing-md);
    height: fit-content;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.form-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.checkout-form .alert {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

.order-items {
    margin-bottom: var(--spacing-md);
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--color-border);
}

.order-totals {
    border-top: 1px solid var(--color-border);
    padding-top: var(--spacing-sm);
}

/* Kupon Section - Modern Design */
.coupon-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f3f7;
}

.coupon-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    align-items: stretch;
}

.coupon-input-group input {
    flex: 1;
    padding: 0.625rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    background: #fff;
    min-height: 38px;
    font-family: inherit;
}

.coupon-input-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.15);
}

.coupon-input-group input[readonly] {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.btn-apply-coupon {
    padding: 0.625rem 1.25rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-apply-coupon:hover {
    background: #1e2d3d;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.2);
}

.btn-apply-coupon:active {
    transform: translateY(0);
}

.btn-remove-coupon {
    padding: 0.625rem;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-height: 38px;
    font-size: 0.875rem;
    line-height: 1;
}

.btn-remove-coupon i,
.btn-remove-coupon .fas {
    font-size: 1rem;
    display: inline-block;
    line-height: 1;
    width: auto;
    height: auto;
}

.btn-remove-coupon:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.btn-remove-coupon:active {
    transform: translateY(0);
}

.coupon-success {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 8px;
    color: #155724;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #c3e6cb;
}

.coupon-success i {
    color: #28a745;
    font-size: 1.125rem;
}

.coupon-error {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-radius: 8px;
    color: #721c24;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #f5c6cb;
}

.coupon-error i {
    color: #dc3545;
    font-size: 1.125rem;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin: var(--spacing-md) 0;
}

.order-details {
    background: var(--color-bg-gray);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    display: inline-block;
}

.success-actions {
    margin-top: var(--spacing-md);
}

/* Pages */
.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--color-primary);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.contact-item h3 {
    margin-bottom: var(--spacing-xs);
}

.faq-item {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
}

.faq-item h3 {
    margin-bottom: var(--spacing-xs);
}

.brand-story {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: var(--color-bg);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-section h3,
.footer-section h4 {
    color: var(--color-bg);
    margin-bottom: var(--spacing-sm);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: rgba(255,255,255,0.8);
}

.footer-section a:hover {
    color: var(--color-bg);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.pagination-link {
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 1px solid var(--color-border);
}

.pagination-link:hover,
.pagination-link.active {
    background: var(--color-primary);
    color: var(--color-bg);
    border-color: var(--color-primary);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

/* WhatsApp Fixed Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Error Page */
.error-page {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.error-page h1 {
    font-size: 6rem;
    margin-bottom: var(--spacing-sm);
}

/* Utilities */
.alert {
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    border-radius: 0;
}

.alert-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        position: relative;
        z-index: 1000;
        overflow: visible;
    }

    .header .container {
        position: relative;
        overflow: visible;
    }

    .header-top {
        flex-wrap: wrap;
        position: relative;
        gap: 1rem;
    }

    /* Show hamburger button on mobile */
    .mobile-menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
        z-index: 1002;
    }

    /* Logo and hamburger on same row */
    .logo {
        order: 1;
        flex: 1;
    }

    .header-search {
        order: 3;
        width: 100%;
        margin: 0;
        margin-top: 0.5rem;
    }

    .header-actions {
        order: 2;
        margin-left: 0.5rem;
    }

    /* Hide main nav by default on mobile - Absolute positioned overlay */
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        flex-direction: column;
        background: #163f3e;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        z-index: 1001;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        order: 5;
        margin-top: 0;
        padding: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        gap: 0;
        -webkit-overflow-scrolling: touch;
    }

    /* Show nav when mobile menu is active */
    .main-nav.mobile-menu-active {
        display: flex;
    }

    /* Nav items full width on mobile */
    .main-nav .nav-item-wrapper {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .main-nav .nav-item-wrapper:last-child {
        border-bottom: none;
    }

    .main-nav .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        width: 100%;
        font-size: 1rem;
        color: #ffffff;
    }

    /* Mobile dropdown indicator */
    .nav-item-wrapper.has-dropdown .nav-link::after {
        content: '+';
        font-size: 1.5rem;
        font-weight: 300;
        transition: transform 0.3s ease;
    }

    .nav-item-wrapper.has-dropdown.mobile-dropdown-open .nav-link::after {
        transform: rotate(45deg);
    }

    /* Mobile mega menu styles */
    .nav-item-wrapper.has-dropdown .mega-menu {
        display: none;
        position: static;
        min-width: auto;
        width: 100%;
        padding: 0;
        box-shadow: none;
        background: var(--color-bg-light);
        margin-top: 0;
    }

    .nav-item-wrapper.has-dropdown.mobile-dropdown-open .mega-menu {
        display: block;
    }

    .nav-item-wrapper.has-dropdown .mega-menu-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .nav-item-wrapper.has-dropdown .mega-menu-left {
        width: 100%;
        padding: 1rem;
    }

    .nav-item-wrapper.has-dropdown .mega-menu-right {
        display: none;
    }

    .nav-item-wrapper.has-dropdown .mega-menu-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-item-wrapper.has-dropdown .mega-menu-title a {
        display: block;
        padding: 0.5rem 0;
        color: var(--color-primary);
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .nav-item-wrapper.has-dropdown .mega-menu-title a:hover {
        color: var(--color-accent);
    }

    .nav-item-wrapper.has-dropdown .mega-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-item-wrapper.has-dropdown .mega-menu-list li {
        margin-bottom: 0.25rem;
    }

    .nav-item-wrapper.has-dropdown .mega-menu-list a {
        display: block;
        padding: 0.75rem 1rem;
        color: var(--color-text);
        text-decoration: none;
        border-radius: 4px;
        transition: all 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-item-wrapper.has-dropdown .mega-menu-list a:hover {
        background: var(--color-bg);
        color: var(--color-primary);
        padding-left: 1.25rem;
    }

    .hero {
        min-height: 400px;
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .hero-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        width: 100%;
        max-width: 100%;
    }
    
    /* Anasayfadaki 4'lü ürün gridlerini de mobilde sıkışmaması için 2 kolona düşür */
    .products-grid.products-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .products-grid > * {
        min-width: 0;
    }
    
    .product-card {
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .product-image {
        width: 100%;
        max-width: 100%;
    }
    
    .product-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
    }

    .product-info {
        padding: 0.75rem 0.9rem 1rem;
    }

    .product-name {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    .product-price {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .product-card .btn,
    .product-card .btn-sm {
        width: 100%;
        text-align: center;
    }

    .products-layout {
        grid-template-columns: 1fr;
    }

    .leftBlock {
        order: 2;
        margin-top: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-main {
        order: 1;
    }
    
    .products-search-container {
        margin-bottom: 1rem !important;
    }
    
    .products-search-form {
        width: 100%;
    }
    
    .products-search-form .input-group {
        max-width: 100% !important;
    }

    .mobilFilterOpenBtn {
        display: flex !important;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .category-vertical-filters {
        display: none;
    }

    .category-vertical-filters.active {
        display: flex;
    }

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

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    /* Top Banner Responsive */
    .ht1 {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }
    
    .highlight,
    .customer-support-link {
        font-size: 12px;
    }
    
    .customer-support-link span {
        font-size: 11px;
    }
    
    /* WhatsApp Button Responsive */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* Snow Effect - Kış Teması */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    animation: snowfall linear infinite;
    pointer-events: none;
    user-select: none;
}

@keyframes snowfall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(var(--drift)) rotate(360deg);
        opacity: 0;
    }
}

.snowflake:nth-child(3n) {
    animation-duration: 10s;
    animation-delay: -2s;
}

.snowflake:nth-child(3n+1) {
    animation-duration: 12s;
    animation-delay: -4s;
}

.snowflake:nth-child(3n+2) {
    animation-duration: 14s;
    animation-delay: -6s;
}

.snowflake:nth-child(5n) {
    animation-duration: 15s;
    animation-delay: -1s;
}

.snowflake:nth-child(7n) {
    animation-duration: 18s;
    animation-delay: -3s;
}


/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--color-bg);
}

.payment-method:hover {
    border-color: var(--color-primary);
    background: var(--color-bg-light);
}

.payment-method input[type="radio"] {
    margin-top: 0.25rem;
    cursor: pointer;
    width: auto;
}

.payment-method input[type="radio"]:checked + span {
    color: var(--color-primary);
}

.payment-method span {
    flex: 1;
}

.payment-method strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    color: var(--color-primary);
}

.payment-method small {
    display: block;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.payment-instructions {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--color-bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.payment-instructions h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.payment-instructions p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.bank-details {
    background: #fff;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.bank-details p {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.bank-details p:last-child {
    margin-bottom: 0;
}

.bank-details strong {
    color: var(--color-primary);
    font-weight: 600;
}


/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--color-bg);
}

.payment-method:hover {
    border-color: var(--color-primary);
    background: var(--color-bg-light);
}

.payment-method input[type="radio"] {
    margin-top: 0.25rem;
    cursor: pointer;
    width: auto;
}

.payment-method input[type="radio"]:checked + span {
    color: var(--color-primary);
}

.payment-method span {
    flex: 1;
}

.payment-method strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    color: var(--color-primary);
}

.payment-method small {
    display: block;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.payment-instructions {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--color-bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.payment-instructions h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.payment-instructions p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.bank-details {
    background: #fff;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.bank-details p {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.bank-details p:last-child {
    margin-bottom: 0;
}

.bank-details strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Snackbar Notification */
.snackbar-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.snackbar {
    min-width: 300px;
    max-width: 400px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    border-left: 4px solid #10b981;
}

.snackbar.show {
    transform: translateX(0);
    opacity: 1;
}

.snackbar.success {
    border-left-color: #10b981;
}

.snackbar.error {
    border-left-color: #ef4444;
}

.snackbar.warning {
    border-left-color: #f59e0b;
}

.snackbar.info {
    border-left-color: #3b82f6;
}

.snackbar-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.snackbar.success .snackbar-icon {
    background: #d1fae5;
    color: #10b981;
}

.snackbar.error .snackbar-icon {
    background: #fee2e2;
    color: #ef4444;
}

.snackbar.warning .snackbar-icon {
    background: #fef3c7;
    color: #f59e0b;
}

.snackbar.info .snackbar-icon {
    background: #dbeafe;
    color: #3b82f6;
}

.snackbar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.snackbar-message {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.4;
}

.snackbar-close {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: color 0.2s ease;
    border-radius: 4px;
}

.snackbar-close:hover {
    color: #1f2937;
    background: #f3f4f6;
}

.snackbar-close i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .snackbar-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .snackbar {
        min-width: auto;
        max-width: 100%;
        transform: translateY(-100px);
    }
    
    .snackbar.show {
        transform: translateY(0);
    }
}
