* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
}

.container {
    max-width: 1650px !important;
    margin: 0 auto !important;
    padding: 0 75px !important;
    position: relative;
}

/* Header Styles */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: none;
}

.top-header {
    background: linear-gradient(to right, #6fe5f5, #29cadf);
    padding: 0 0 4px 0;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 6px;
    padding-bottom: 2px;
}

.logos-wrapper {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    margin-left: 35px;
    padding-top: 8px;
    margin-top: -5px;
}

.logo-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 5px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    flex: 1;
    min-width: 160px;
    z-index: 5;
    text-decoration: none;
}

.logo-item.active {
    background: white;
    height: 50px;
    padding: 5px 16px;
    border-radius: 8px 8px 0 0;
    position: relative;
    z-index: 10;
    flex: 2;
}

.logo-item.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -5px;
    right: -5px;
    height: 20px;
    background: url('../img/kopru.png') center / contain no-repeat;
    z-index: 9;
}

/* Seçili logo ile sayfa arasındaki köprü */
.selected-border-mask {
    display: none;
}

.logo-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.7);
}

.logo-img {
    max-height: 80%;
    max-width: 100px;
    object-fit: contain;
    display: block;
    margin-left: 8px;
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-right: 35px;
}

.header-btn {
    background: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #29cadf;
    transition: all 0.3s;
    height: 42px;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.header-btn svg {
    color: #4DD9E8;
}

.header-btn.campaigns {
    position: relative;
}

.svg-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.svg-wrapper .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #29cadf;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-btn {
    background: white;
    border: 2px solid white;
}

/* Search Bar */
.search-bar {
    background: white;
    padding: 10px 0 10px 0;
    margin-top: 0;
}

.search-bar .container {
    max-width: 1250px;
}

.search-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 18px;
    z-index: 1;
}

.search-input {
    flex: 1;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #4DD9E8;
}

.search-input::placeholder {
    color: #999;
}

.cart-btn {
    background: #00C1D4;
    border: none;
    padding: 10px 40px 10px 10px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.cart-icon-wrapper {
    background: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cart-icon-wrapper .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #29cadf;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-text {
    margin-left: 6px;
}

.cart-btn:hover {
    background: #00A8B8;
}

.cart-count {
    background: white;
    color: #00C1D4;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.main-nav {
    background: white;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    overflow: visible;
    position: static;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 0;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.nav-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    border-right: 1px solid #ddd;
}

.nav-item:last-child::after {
    display: none;
}

.nav-item::after {
    content: '';
    position: absolute;
    right: 0;
    height: 10px;
    width: 1px;
    background: #ddd;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.3s;
}

.nav-item.has-mega:hover::after {
    opacity: 0;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    height: 10px;
    width: 1px;
    background: #ddd;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.3s;
}

.nav-item:first-child::before {
    display: none;
}

.nav-item.has-mega:hover::before {
    opacity: 0;
}

.nav-item.has-mega:hover + .nav-item::before {
    opacity: 0;
}

.nav-list li {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    border-right: 1px solid #ddd;
}

.nav-list li::after {
    content: '';
    position: absolute;
    right: 0;
    height: 10px;
    width: 1px;
    background: #ddd;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.3s;
}

.nav-list li:last-child {
    border-right: none;
}

.nav-list li:last-child::after {
    display: none;
}

.nav-item.has-mega:hover::after,
.nav-item.has-mega:hover + li::before {
    opacity: 0;
}

.nav-list li::before {
    content: '';
    position: absolute;
    left: 0;
    height: 10px;
    width: 1px;
    background: #ddd;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.3s;
}

.nav-list li:first-child::before {
    display: none;
}

.nav-list a {
    display: block;
    padding: 8px 20px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s;
    position: relative;
}

.nav-item.has-mega:hover > a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #e0e0e0;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    pointer-events: none;
}

.nav-item.has-mega:hover::after,
.nav-item.has-mega:hover::before {
    opacity: 0 !important;
}

.nav-item.has-mega:hover + li::before {
    opacity: 0 !important;
}

/* Mega Menu */
.nav-item.has-mega {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 1000;
    width: 100%;
    border: 2px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin-top: 0;
}

.nav-item.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-content {
    max-width: 1650px !important;
    margin: 0 auto !important;
    padding: 30px 20px !important;
    display: flex !important;
    gap: 40px !important;
    min-height: 380px !important;
}

.mega-left {
    flex: 0 0 auto;
    display: flex;
    gap: 20px;
}

.mega-categories {
    display: flex;
    gap: 20px;
    flex: 0 0 auto;
}

.mega-column {
    flex: 0 0 400px !important;
    width: 400px !important;
    display: flex;
    flex-direction: column;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 8px;
}

.mega-column::-webkit-scrollbar {
    width: 6px;
}

.mega-column::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.mega-column::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.mega-column::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.mega-cat-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s;
    margin-bottom: 4px;
    position: relative;
}

.mega-cat-item:hover span {
    color: #00C1D4;
}

.mega-cat-item:hover svg {
    color: #00C1D4;
}

.mega-cat-item span {
    display: block;
    padding-right: 30px;
}

.mega-cat-item svg {
    color: #333;
    opacity: 0.6;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.mega-subcats {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 8px;
}

.mega-subcats::-webkit-scrollbar {
    width: 6px;
}

.mega-subcats::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.mega-subcats::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.mega-subcats::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.mega-subcat {
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.2s;
}

.mega-subcat:hover {
    color: #00C1D4;
}

.mega-right {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    width: 400px !important;
    max-width: none !important;
    flex-shrink: 0 !important;
    margin-left: -100px !important;
}

.mega-card-wide {
    grid-column: 1 / -1;
}

.mega-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    transition: transform 0.2s;
    background: transparent;
    aspect-ratio: 16 / 9;
}

.mega-card:hover {
    transform: translateY(-2px);
}

.mega-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Ev & Yaşam ve Anne & Bebek menüsünde 2. kolonu darallt */
.nav-item:nth-child(2) .mega-column:nth-child(2),
.nav-item:nth-child(5) .mega-column:nth-child(2) {
    flex: 0 0 320px !important;
    width: 320px !important;
}

/* Anne & Bebek menüsünde 2. kolonu daha da darallt */
.nav-item:nth-child(5) .mega-column:nth-child(2) {
    flex: 0 0 250px !important;
    width: 250px !important;
}

/* Ev & Yaşam ve Anne & Bebek menüsünde resimleri sağa kaydır */
.nav-item:nth-child(2) .mega-right,
.nav-item:nth-child(5) .mega-right {
    margin-left: 30px !important;
}



/* Main Content */
.main-content {
    min-height: auto;
}

.page-section {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.page-section h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    color: #00C1D4;
}

.page-section p {
    font-size: 18px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .header-btn span {
        display: none;
    }
    
    .header-btn {
        padding: 8px 12px;
    }
    
    .nav-list {
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .nav-list li {
        flex: 0 0 auto;
    }
}

/* Category Slider */
.category-slider {
    background: transparent;
    padding: 0;
    border-bottom: none;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.slider-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 200;
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    pointer-events: auto;
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

.slider-btn:hover {
    color: #333;
}

.slider-container {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    z-index: 1;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    width: fit-content;
    padding: 10px 0;
}

.slider-item {
    flex: 0 0 120px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.slider-item:hover {
    transform: translateY(-5px);
}

.slider-item img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    background: #f5f5f5;
}

.slider-item span {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
}

/* Banner Slider */
.banner-slider-section {
    background: transparent;
    padding: 10px 0;
}

.banner-slider-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.banner-controls {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
    padding: 0;
}

.banner-control-btn {
    background: #f5f5f5;
    border: none;
    padding: 12px 28px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-size: 10px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    flex: 0 0 auto;
    text-align: center;
    margin-right: 10px;
}

.banner-control-btn:hover {
    background: #e8e8e8;
}

.banner-control-btn.active {
    background: #00C1D4;
    color: white;
    border-radius: 16px 16px 0 0;
}

.banner-control-btn.active:last-child {
    color: white;
}

.banner-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
    aspect-ratio: 16 / 5;
}

.banner-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.banner-item {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00C1D4;
    border: none;
    width: 25px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s;
    z-index: 20;
}

.banner-btn:hover {
    background: #0099ab;
}

.banner-btn.prev {
    left: -5px;
    border-radius: 0 50px 50px 0;
}

.banner-btn.next {
    right: -5px;
    border-radius: 50px 0 0 50px;
}

/* Cargo Info Section */
.cargo-info-section {
    background: transparent;
    padding: 20px 0;
    margin-top: 10px;
}

.cargo-info-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cargo-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.cargo-text {
    font-size: 14px;
    font-weight: 400;
    color: #00C1D4;
    margin: 0;
    text-align: center;
}

/* Promo Banners Section */
.promo-banners-section {
    background: transparent;
    padding: 30px 0;
    margin-top: 20px;
}

.promo-banners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.promo-banner {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    height: 70px;
}

.promo-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Products Slider Section */
.products-slider-section {
    background: transparent;
    padding: 40px 0;
    margin-top: 20px;
}

.products-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.products-slider-header h2 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.see-more {
    color: #00C1D4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.see-more:hover {
    gap: 10px;
}

.see-more span {
    display: inline-block;
}

.products-slider-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
}

.products-banner-container {
    flex: 0 0 160px;
    width: 160px;
    min-height: 280px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.products-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.products-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.products-slider-container {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-slider-container::-webkit-scrollbar {
    display: none;
}

.products-track {
    display: flex;
    gap: 15px;
    width: fit-content;
    padding: 10px 0;
}

.products-slider-btn {
    background: #00C1D4;
    border: none;
    width: 25px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 20;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.products-slider-btn:hover {
    background: #0099ab;
}

.products-slider-btn.prev {
    left: 0;
    border-radius: 0 50px 50px 0;
}

.products-slider-btn.next {
    right: 0;
    border-radius: 50px 0 0 50px;
}

/* Product Card */
.product-card {
    flex: 0 0 160px;
    width: 160px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    height: auto;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    background: white;
    flex-shrink: 0;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: white;
    display: block;
}

.product-campaign-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 8px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-campaign-badge {
    opacity: 1;
}

.product-campaign-badge img {
    max-width: 80px;
    max-height: 60px;
    object-fit: contain;
}

.product-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    font-size: 12px;
    font-weight: 400;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 14px;
    font-weight: 400;
    color: #00C1D4;
    margin-bottom: 10px;
    margin-top: auto;
}

.add-to-cart-btn {
    width: 100%;
    padding: 4px;
    background: #00C1D4;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart-btn:hover {
    background: #0099ab;
}


/* Products Page Styles */
.products-page-wrapper {
    min-height: calc(100vh - 300px);
    padding: 40px 0;
}

.products-page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Sidebar Filters */
.filters-sidebar {
    background: #f0f4f8;
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-header {
    width: 100%;
    background: none;
    border: none;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.filter-header:hover {
    color: #48dbfb;
}

.filter-header svg {
    transition: transform 0.3s ease;
    color: #999;
}

.filter-group.active .filter-header svg {
    transform: rotate(180deg);
}

.filter-content {
    display: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

.filter-group.active .filter-content {
    display: block;
}

.filter-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #666;
}

.filter-item input {
    margin-right: 8px;
    cursor: pointer;
}

.filter-item:hover {
    color: #48dbfb;
}

.brand-search {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
}

/* Products Section */
.products-section {
    flex: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.products-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.products-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
}

.sort-wrapper svg {
    color: #999;
}

.sort-select {
    border: none;
    background: none;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    outline: none;
}

.view-toggle {
    width: 36px;
    height: 36px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.view-toggle:hover,
.view-toggle.active {
    background: #48dbfb;
    border-color: #48dbfb;
    color: white;
}

.products-info {
    margin-bottom: 20px;
}

.results-text {
    font-size: 13px;
    color: #666;
}

.results-text strong {
    color: #333;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #f5f5f5;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.product-wishlist:hover {
    background: #48dbfb;
    color: white;
}

.product-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #ff3b30;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.product-info {
    padding: 15px;
}

.product-name {
    font-size: 12px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 4px;
    background: #48dbfb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: #29b3d1;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination-btn {
    width: 36px;
    height: 36px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-btn:hover {
    border-color: #48dbfb;
    color: #48dbfb;
}

.pagination-btn.active {
    background: #48dbfb;
    color: white;
    border-color: #48dbfb;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-page-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
        sticky: unset;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}


/* Loading Spinner */
.loading-container {
    position: fixed;
    top: 200px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 202, 223, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(41, 202, 223, 0.2);
    border-top: 4px solid #29cadf;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* ===== VARIATION MODAL STYLES ===== */
.variation-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.variation-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.variation-modal {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.variation-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.variation-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.variation-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.variation-modal-close:hover {
    color: #333;
}

.variation-modal-body {
    padding: 25px;
}

.variation-section {
    margin-bottom: 30px;
}

.variation-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.variation-required {
    color: #e74c3c;
    font-weight: 700;
}

.color-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 12px;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.color-option:hover {
    transform: scale(1.05);
}

.color-box {
    width: 60px;
    height: 60px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}

.color-option.selected .color-box {
    border-color: #29cadf;
    border-width: 3px;
}

.color-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-name {
    font-size: 12px;
    color: #666;
    text-align: center;
    max-width: 70px;
    word-break: break-word;
}

.color-option.selected .color-name {
    color: #29cadf;
    font-weight: 600;
}

.size-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 10px;
}

.size-option {
    padding: 12px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    transition: all 0.2s;
    background: white;
}

.size-option:hover {
    border-color: #29cadf;
    color: #29cadf;
}

.size-option.selected {
    background: #29cadf;
    color: white;
    border-color: #29cadf;
}

.variation-product-info {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.variation-product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.variation-product-row:last-child {
    margin-bottom: 0;
}

.variation-product-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

.variation-product-value {
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

.variation-product-price {
    font-size: 20px;
    color: #29cadf;
    font-weight: 700;
}

.variation-modal-footer {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid #e8e8e8;
    background: white;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.variation-btn {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.variation-btn-cancel {
    background: #f0f0f0;
    color: #333;
    border: 2px solid #e0e0e0;
}

.variation-btn-cancel:hover {
    background: #e8e8e8;
    border-color: #999;
}

.variation-btn-add {
    background: linear-gradient(to right, #6fe5f5, #29cadf);
    color: white;
    box-shadow: 0 3px 10px rgba(41, 202, 223, 0.3);
}

.variation-btn-add:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 202, 223, 0.4);
}

.variation-btn-add:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.variation-btn-add.loading {
    position: relative;
    color: transparent;
}

.variation-btn-add.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

.variation-error {
    background: #fee;
    color: #c33;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 15px;
    border-left: 4px solid #c33;
}

/* Responsive */
@media (max-width: 600px) {
    .variation-modal {
        width: 95%;
        max-height: 95vh;
    }

    .variation-modal-body {
        padding: 18px;
    }

    .color-options {
        grid-template-columns: repeat(auto-fill, minmax(55px, 1fr));
    }

    .size-options {
        grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
    }

    .variation-modal-footer {
        padding: 15px;
        gap: 10px;
    }

    .variation-btn {
        padding: 12px;
        font-size: 13px;
    }
}


/* Kampanya Görseli Kartı */
.campaign-image-card {
    flex-shrink: 0;
    width: 160px;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.campaign-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.campaign-banner-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}


/* İndirimli Fiyat Stilleri */
.product-price-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-price-old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.product-price-discount {
    font-size: 16px;
    font-weight: 700;
    color: #e74c3c;
}

.product-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-start;
}

.product-price-wrapper .discount-badge {
    align-self: flex-start;
    background: #ff4444;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 3px;
}
