/**
 * PAZARIX PREMIUM THEME - Sıfırdan Tasarım
 * Yeni class isimleri, eski hiçbir şeyle çakışmaz
 * Created: 2026-01-14
 */

/* ═══════════════════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pzx-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    color: #000;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

.pzx-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOP BAR - Premium Announcement Bar
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-topbar {
    display: flex;
    background: linear-gradient(90deg, #000000 0%, #000000 100%);
    padding: 21px 0px;
    justify-content: center;
}

.pzx-topbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pzx-topbar-text {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pzx-topbar-text a {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.pzx-topbar-text a:hover {
    opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER - Premium Minimal Header (pazarix Style)
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-header {
    background: #fff;
    padding: 18px 0;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: box-shadow 0.3s ease;
}

.pzx-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.pzx-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo - Premium Style */
.pzx-logo {
    flex-shrink: 0;
}

.pzx-logo img {
    height: 42px;
    width: auto;
    transition: transform 0.3s ease;
}

.pzx-logo:hover img {
    transform: scale(1.02);
}

.pzx-logo-text {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #000;
    text-transform: uppercase;
}

/* Search - Minimal Premium Style */
.pzx-search {
    flex: 1;
    max-width: 420px;
    margin: 0 50px;
}

.pzx-search-form {
    position: relative;
    width: 100%;
}

.pzx-search-input {
    width: 100%;
    height: 46px;
    background: #f8f8f8;
    border: 1px solid transparent;
    border-radius: 25px;
    padding: 0 50px 0 22px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    transition: all 0.3s ease;
}

.pzx-search-input:focus {
    outline: none;
    background: #fff;
    border-color: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pzx-search-input::placeholder {
    color: #888;
    font-weight: 400;
}

.pzx-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 36px;
    background: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pzx-search-btn:hover {
    background: #333;
    transform: translateY(-50%) scale(1.05);
}

.pzx-search-btn svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

/* Header Actions - Premium Icons */
.pzx-header-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pzx-header-btn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.pzx-header-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.pzx-header-btn svg {
    width: 22px;
    height: 22px;
    color: #000;
    transition: color 0.2s;
}

.pzx-header-btn:hover svg {
    color: #e53935;
}

.pzx-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    background: #e53935;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION - Premium Minimal Menu (pazarix Style)
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-nav {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 998;
}

.pzx-nav .pzx-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.pzx-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    width: 100%;
}

/* Navigation Item (Wrapper) */
.pzx-nav-item {
    position: relative;
}

/* Navigation Link - Premium Style */
.pzx-nav-link {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 14px clamp(4px, 0.55vw, 9px);
    font-size: clamp(10px, 0.78vw, 11.5px);
    font-weight: 600;
    color: #000;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

/* Hover Underline Effect */
.pzx-nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 9px;
    right: 9px;
    height: 2px;
    background: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pzx-nav-link:hover::after,
.pzx-nav-item:hover .pzx-nav-link::after {
    transform: scaleX(1);
}

.pzx-nav-link:hover {
    color: #000;
}

/* Sabit Header Buton */
.pzx-nav-fixed-btn-wrap {
    margin-left: 8px;
}

.pzx-nav-fixed-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.pzx-nav-fixed-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    text-decoration: none;
}

.pzx-nav-fixed-btn.button-black-white { background: #000; color: #fff; }
.pzx-nav-fixed-btn.button-white-black { background: #fff; color: #000; border: 1px solid #000; }
.pzx-nav-fixed-btn.button-yellow { background: #ffc107; color: #000; }
.pzx-nav-fixed-btn.button-yellow-out { background: transparent; color: #ffc107; border: 1px solid #ffc107; }
.pzx-nav-fixed-btn.button-black { background: #222; color: #fff; }
.pzx-nav-fixed-btn.button-black-out { background: transparent; color: #222; border: 1px solid #222; }
.pzx-nav-fixed-btn.button-white { background: #fff; color: #333; }
.pzx-nav-fixed-btn.button-white-out { background: transparent; color: #fff; border: 1px solid #fff; }
.pzx-nav-fixed-btn.button-gold { background: #c9a84c; color: #fff; }
.pzx-nav-fixed-btn.button-gold-out { background: transparent; color: #c9a84c; border: 1px solid #c9a84c; }
.pzx-nav-fixed-btn.button-red { background: #e53935; color: #fff; }
.pzx-nav-fixed-btn.button-red-out { background: transparent; color: #e53935; border: 1px solid #e53935; }
.pzx-nav-fixed-btn.button-blue { background: #1976d2; color: #fff; }
.pzx-nav-fixed-btn.button-blue-out { background: transparent; color: #1976d2; border: 1px solid #1976d2; }
.pzx-nav-fixed-btn.button-green { background: #2e7d32; color: #fff; }
.pzx-nav-fixed-btn.button-green-out { background: transparent; color: #2e7d32; border: 1px solid #2e7d32; }

.pzx-nav-link.is-red {
    color: #e53935;
    font-weight: 700;
}

.pzx-nav-link.is-red::after {
    background: #e53935;
}

/* Dropdown Arrow */
.pzx-nav-arrow {
    color: #999;
    transition: transform 0.3s ease;
    font-size: 10px;
}

.pzx-nav-item:hover .pzx-nav-arrow {
    transform: rotate(180deg);
    color: #000;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MEGA MENU - Modern Horizontal Style
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-dropdown {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
    transform: none;
}

/* Premium Top Border Accent */
.pzx-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

/* Show Mega Menu on Hover */
.pzx-nav-item.has-dropdown:hover .pzx-dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
}

.pzx-dropdown-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 35px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

/* Dropdown Group (Category Column) */
.pzx-dropdown-group {
    min-width: 0;
}

/* Category Title in Mega Menu */
.pzx-dropdown-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #000;
    transition: color 0.2s;
}

.pzx-dropdown-title:hover {
    color: #e53935;
}

/* Sub-category Links in Columns */
.pzx-dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pzx-dropdown-link {
    font-size: 13px;
    font-weight: 400;
    color: #555;
    padding: 4px 0;
    transition: all 0.2s ease;
    position: relative;
}

.pzx-dropdown-link:hover {
    color: #000;
    transform: translateX(8px);
}

/* Dropdown Footer - Tüm Ürünleri Gör */
.pzx-dropdown-footer {
    border-top: 1px solid #f0f0f0;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    background: #fafafa;
}

.pzx-dropdown-all {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.pzx-dropdown-all:hover {
    background: #000;
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-hero {
    position: relative;
    width: 100%;
    height: 88vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
}

.pzx-hero-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.pzx-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pzx-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pzx-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 20px;
    width: 100%;
    pointer-events: none;
}

.pzx-hero-content a,
.pzx-hero-content button {
    pointer-events: auto;
}

.pzx-hero-title {
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.pzx-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pzx-hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: background 0.3s, transform 0.3s;
}

.pzx-hero-btn:hover {
    background: #333;
    transform: translateY(-2px);
    color: #fff;
}

/* ─── PZX HERO SWIPER CAROUSEL ─── */
.pzx-hero-swiper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pzx-hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pzx-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 2;
    pointer-events: none;
}

.pzx-hero-content {
    z-index: 3 !important;
    width: 90%;
    max-width: 900px;
    pointer-events: none;
}

.pzx-hero-content a,
.pzx-hero-content button {
    pointer-events: auto;
}

.pzx-hero-title {
    font-size: clamp(22px, 4.5vw, 60px);
}

.pzx-hero-desc {
    font-size: clamp(13px, 1.4vw, 18px);
}

/* ─── OKLAR (prev / next) ─── */
.pzx-hero-next,
.pzx-hero-prev {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    width: 48px !important;
    height: 48px !important;
    margin-top: 0 !important;
    background: rgba(255,255,255,0.18) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.3s, opacity 0.3s;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pzx-hero-prev {
    left: 20px !important;
    right: auto !important;
}

.pzx-hero-next {
    right: 20px !important;
    left: auto !important;
}

.pzx-hero-next:hover,
.pzx-hero-prev:hover {
    background: rgba(255,255,255,0.40) !important;
}

.pzx-hero-next::after,
.pzx-hero-prev::after {
    font-family: swiper-icons, sans-serif !important;
    font-size: 18px !important;
    color: #fff !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

/* Swiper disabled durumunda gizle */
.pzx-hero-next.swiper-button-disabled,
.pzx-hero-prev.swiper-button-disabled {
    opacity: 0.3 !important;
    cursor: default !important;
}

/* ─── NOKTA GÖSTERGESİ (pagination) ─── */
.pzx-hero-pagination {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px;
    line-height: 1;
}

.pzx-hero-pagination .swiper-pagination-bullet {
    display: inline-block !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 4px !important;
    background: rgba(255,255,255,0.5) !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    margin: 0 !important;
}

.pzx-hero-pagination .swiper-pagination-bullet-active {
    background: #fff !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   INFO BOXES / SERVICES - pazarix STYLE
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-services {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pzx-services-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
    /* Added for responsiveness */
}

.pzx-service-item {
    flex: 0 0 auto;
    text-align: center;
    max-width: 280px;
}

.pzx-service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.pzx-service-icon svg {
    width: 48px;
    height: 48px;
    stroke: #333;
    stroke-width: 1.5;
}

.pzx-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.pzx-service-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT SECTION - Ürün bölümü
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-products {
    background: #fff;
    padding: 60px 0;
}

.pzx-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.pzx-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.pzx-section-subtitle {
    font-size: 14px;
    color: #777;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT TABS - YATAY TABLAR
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    border: none;
    background: transparent;
}

.pzx-tab {
    display: inline-block;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pzx-tab:hover {
    color: #666;
}

.pzx-tab.is-active {
    color: #000;
    border-bottom-color: #000;
    font-weight: 600;
}

/* Tab Content */
.pzx-tab-content {
    display: none;
}

.pzx-tab-content.is-active {
    display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT GRID
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT CARD - Ürün kartı
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT CARD - pazarix STYLE (Yenilenmiş Tasarım)
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-product {
    background: #fff;
    position: relative;
    font-family: 'Poppins', sans-serif;
    /* pazarix Font */
    padding-bottom: 20px;
    /* Alt boşluk */
}

/* 1. Görsel Alanı - 1200x1800 Oranı (2:3) */
.pzx-product-image {
    position: relative;
    background: #f0f0f0;
    aspect-ratio: 2 / 3;
    /* Dikey Dikdörtgen */
    overflow: hidden;
    margin-bottom: 10px;
}

.pzx-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Görseli kırpmadan tamamını göster (1200x1800 dikey format) */
    background: #f0f0f0;
    transition: transform 0.5s ease;
}

.pzx-product:hover .pzx-product-image img {
    transform: scale(1.05);
}

/* Badges - Only Top Right Black Box for 'New' or 'Sold Out' */
.pzx-product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 2px;
    z-index: 2;
}

/* 2. Sepete Ekle Butonu (Görselin hemen altında) */
.pzx-add-to-cart-btn {
    display: block;
    width: 100%;
    background: #fff;
    color: #000;
    border: 1px solid #000;
    text-align: center;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    /* border-top: none; removed */
}

.pzx-add-to-cart-btn:hover {
    background: #000;
    color: #fff;
}

/* 3. Ürün Bilgileri */
.pzx-product-info {
    padding: 15px 5px 0;
    text-align: center;
}

/* Marka */
.pzx-product-brand {
    font-size: 14px;
    font-weight: 800;
    /* Extra Bold */
    color: #000;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

/* Başlık */
.pzx-product-title {
    font-size: 12px;
    font-weight: 400;
    color: #232323;
    /* Dark Gray */
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pzx-product-title a {
    color: inherit;
    text-decoration: none;
}

/* Fiyat Alanı */
.pzx-product-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

/* İndirim Rozeti (Kırmızı Kare) */
.pzx-product-discount-badge {
    background: #000;
    /* pazarix'da siyah görünüyor screenshotta, ama kullanıcı kırmızı çizmişti, screenshot analizimde solda kırmızı kutu %50 var */
    background: #000;
    /* Text-red classı vardı ama kutu siyahtı */
    background: #000;
    /* Standart yapalım */
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 2px;
}

/* pazarix analizine göre güncelleme: İndirim oranı solda siyah kutu */

/* Fiyatlar */
.pzx-price-wrapper {
    display: flex;
    flex-direction: column;
    /* Alt alta */
    align-items: flex-start;
    line-height: 1.1;
}

.pzx-product-price-old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.pzx-product-price-current {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

/* Renk / Numara Bilgisi */
.pzx-product-meta {
    font-size: 10px;
    color: #777;
    margin-top: 5px;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   KAYAN YAZI (MARQUEE) - pazarix STYLE
   ═══════════════════════════════════════════════════════════════════════════ */
.pzx-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Slider Üstündeki Marquee - Siyah Tema */
.pzx-marquee-top {
    background: #1a1a1a;
    color: #fff;
}

/* Slider Altındaki Marquee - Kırmızı Tema (pazarix Style) */
.pzx-marquee-bottom {
    background: #e53935;
    color: #fff;
    margin-bottom: 30px;
    /* Banner ile arasına boşluk */
}

.pzx-marquee-track {
    display: inline-block;
    animation: marquee-scroll 30s linear infinite;
}

.pzx-marquee-track span {
    display: inline-block;
    padding-right: 0;
    /* Boşluk yok */
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Marquee Hover'da Dursun (İsteğe bağlı) */
.pzx-marquee:hover .pzx-marquee-track {
    animation-play-state: paused;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BANNER VITRINI 1 - pazarix STYLE (BIREBIR AYNI)
   ═══════════════════════════════════════════════════════════════════════════ */
.pzx-showcase-1 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Eşit Sütun */
    gap: 3px;
    /* pazarix'daki ince beyaz çizgi */
    background: #fff;
    /* Gap rengi beyaz olsun */
}

/* Mobilde tek sütun */
@media (max-width: 768px) {
    .pzx-showcase-1 {
        grid-template-columns: 1fr;
    }
}

/* Bootstrap row'u devre dışı bırak, CSS Grid kullan */
.pzx-showcase-1 .row {
    display: contents;
    /* Row'u görünmez yap, içindekiler grid'e dahil olsun */
}

/* Her bir col-md-4'ü grid item olarak kullan */
.pzx-showcase-1 [class*="col-"] {
    padding: 0 !important;
    max-width: 100% !important;
    flex: none !important;
}

.pzx-sb1-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    /* DİKEY - pazarix Style */
}

.pzx-sb1-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.pzx-sb1-item:hover img {
    transform: scale(1.03);
}

.pzx-sb1-overlay {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    /* ORTADA */
    z-index: 2;
    pointer-events: none;
    padding: 0 15px;
}

.pzx-sb1-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    color: #222 !important;
    /* Koyu renk (görsele göre değişebilir) */
    margin-bottom: 5px;
    line-height: 1.2;
    text-shadow: none;
}

.pzx-sb1-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════
   BANNER + PRODUCT SHOWCASE - pazarix STYLE
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-banner-product-section {
    background: #fff;
    padding: 60px 0;
}

.pzx-banner-product-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    /* pazarix Style: 1 birim sol görsel, 3 birim sağ ürünler */
    gap: 30px;
    align-items: stretch;
}

/* Left Banner */
.pzx-bp-banner {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 2px;
}

.pzx-bp-banner a {
    display: block;
    height: 100%;
}

.pzx-bp-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pzx-bp-banner:hover img {
    transform: scale(1.03);
}

.pzx-bp-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
    pointer-events: none;
}

.pzx-bp-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Right Products - Yatay Scroll Slider */
.pzx-bp-products {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    /* Scrollbar stil */
    scrollbar-width: thin;
    scrollbar-color: #ddd #f5f5f5;
}

.pzx-bp-products::-webkit-scrollbar {
    height: 5px;
}

.pzx-bp-products::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.pzx-bp-products::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

/* Slider içindeki kartlar sabit genişlikte */
.pzx-bp-products .pzx-product {
    flex: 0 0 220px;
    width: 220px;
    scroll-snap-align: start;
}

/* Responsive */
@media (max-width: 992px) {
    .pzx-banner-product-grid {
        grid-template-columns: 1fr;
        /* Alt alta */
    }

    .pzx-bp-banner {
        height: 400px;
        /* Mobilde sabit yükseklik */
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .pzx-bp-products .pzx-product {
        flex: 0 0 180px;
        width: 180px;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   INSTAGRAM GALLERY - pazarix STYLE
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-instagram-section {
    background: #fff;
    padding-top: 50px;
    padding-bottom: 20px;
}

.pzx-instagram-title {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.pzx-instagram-hashtag {
    color: #333;
    font-weight: 600;
}

.pzx-instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.pzx-instagram-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.pzx-instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pzx-instagram-item:hover img {
    transform: scale(1.05);
}

.pzx-instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pzx-instagram-item:hover .pzx-instagram-overlay {
    opacity: 1;
}

.pzx-instagram-overlay svg {
    color: #fff;
    width: 40px;
    height: 40px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NEWSLETTER SECTION - pazarix STYLE
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-newsletter {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pzx-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="3" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="70" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
    opacity: 0.5;
}

.pzx-newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.pzx-newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.pzx-newsletter-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pzx-newsletter-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.pzx-newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 450px;
    margin: 0 auto;
}

.pzx-newsletter-input {
    flex: 1;
    height: 48px;
    padding: 0 20px;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: #333;
}

.pzx-newsletter-input::placeholder {
    color: #999;
}

.pzx-newsletter-input:focus {
    outline: none;
}

.pzx-newsletter-btn {
    height: 48px;
    padding: 0 28px;
    background: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

.pzx-newsletter-btn:hover {
    background: #333;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER - pazarix STYLE (BEYAZ ARKA PLAN)
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-footer {
    background: #fff;
    padding: 50px 0 40px;
    border-top: 1px solid #eee;
}

/* Footer Logo - Merkezde */
.pzx-footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.pzx-footer-logo img {
    height: 36px;
    width: auto;
}

.pzx-footer-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    letter-spacing: -1px;
}

/* Footer Main - 4 Sütun */
.pzx-footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.pzx-footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #080613;
    margin-bottom: 20px;
    text-transform: none;
}

.pzx-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pzx-footer-col li {
    margin-bottom: 12px;
}

.pzx-footer-col a {
    font-size: 14px;
    color: #000;
    transition: all 0.2s;
    text-decoration: none;
}

.pzx-footer-col a:hover {
    text-decoration: underline;
}

/* Sosyal Medya Kolonu */
.pzx-footer-social-col {
    text-align: left;
}

.pzx-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.pzx-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #000;
    transition: all 0.2s;
}

.pzx-footer-social a:hover {
    color: #e53935;
    text-decoration: none;
}

.pzx-footer-social svg {
    width: 22px;
    height: 22px;
}

/* Ödeme Yöntemleri */
.pzx-footer-payments {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pzx-footer-payments img {
    height: 24px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.pzx-footer-payments img:hover {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   COPYRIGHT BAR - SİYAH
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-copyright {
    background: #000;
    color: #fff;
    padding: 18px 0;
    text-align: center;
    font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .pzx-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .pzx-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pzx-hero {
        height: 60vh;
        min-height: 380px;
        max-height: 600px;
    }

    .pzx-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .pzx-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    /* Tablet: okları biraz küçült */
    .pzx-hero-next,
    .pzx-hero-prev {
        width: 40px !important;
        height: 40px !important;
    }

    .pzx-hero-prev {
        left: 12px !important;
    }

    .pzx-hero-next {
        right: 12px !important;
    }

    .pzx-footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HAMBURGER MOBILE MENU
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    z-index: 1010;
}

.pzx-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.pzx-hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.pzx-hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.pzx-hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.pzx-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1020;
    backdrop-filter: blur(2px);
}

.pzx-mobile-overlay.is-active {
    display: block;
}

.pzx-mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 1030;
    overflow-y: auto;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.pzx-mobile-drawer.is-active {
    left: 0;
}

.pzx-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
}

.pzx-drawer-logo {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.5px;
}

.pzx-drawer-logo img {
    height: 32px;
    width: auto;
}

.pzx-drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 18px;
    color: #333;
    line-height: 1;
}

.pzx-drawer-close:hover {
    background: #e8e8e8;
}

.pzx-drawer-nav {
    flex: 1;
    padding: 12px 0;
}

.pzx-drawer-item {
    border-bottom: 1px solid #f5f5f5;
}

.pzx-drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.pzx-drawer-link:hover {
    background: #f8f8f8;
    color: #000;
}

.pzx-drawer-link.is-red {
    color: #e53935;
    font-weight: 700;
}

.pzx-drawer-arrow {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.pzx-drawer-arrow svg {
    width: 14px;
    height: 14px;
}

.pzx-drawer-item.is-open > .pzx-drawer-link .pzx-drawer-arrow {
    transform: rotate(90deg);
    color: #000;
}

.pzx-drawer-sub {
    display: none;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.pzx-drawer-item.is-open > .pzx-drawer-sub {
    display: block;
}

.pzx-drawer-sub-link {
    display: block;
    padding: 12px 20px 12px 32px;
    font-size: 13px;
    font-weight: 400;
    color: #444;
    border-bottom: 1px solid #eee;
    transition: color 0.2s;
}

.pzx-drawer-sub-link:hover {
    color: #000;
    background: #f0f0f0;
}

.pzx-drawer-sub-link:last-child {
    border-bottom: none;
}

.pzx-drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
}

.pzx-drawer-footer a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    background: #ff0000;
    border-radius: 8px;
    text-align: center;
    transition: background 0.2s;
}

.pzx-drawer-footer a:hover {
    background: #ff0000;
}

.pzx-drawer-footer svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 991px) {
    .pzx-nav {
        display: none !important;
    }

    .pzx-hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .pzx-header-inner {
        flex-wrap: nowrap;
        gap: 0;
        justify-content: space-between;
        align-items: center;
    }

    .pzx-logo {
        flex: 1;
    }

    .pzx-search {
        display: none;
    }

    .pzx-header-actions {
        gap: 2px;
    }

    .pzx-nav-inner {
        flex-wrap: wrap;
    }

    .pzx-nav-link {
        padding: 12px 14px;
        font-size: 12px;
    }

    .pzx-tabs {
        gap: 20px;
    }

    .pzx-tab {
        font-size: 11px;
    }

    .pzx-services-grid {
        gap: 30px;
        /* Reduced gap for smaller screens */
        padding: 0 15px;
    }

    .pzx-service-item {
        flex: 1 1 150px;
        /* Allow items to grow/shrink but maintain a base */
        max-width: 200px;
        padding: 10px;
    }

    /* Newsletter Responsive */
    .pzx-newsletter-title {
        font-size: 24px;
    }

    .pzx-newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .pzx-newsletter-input,
    .pzx-newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .pzx-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .pzx-section-title {
        font-size: 22px;
    }

    .pzx-hero {
        height: 52vw;
        min-height: 240px;
        max-height: 480px;
    }

    .pzx-hero-title {
        font-size: clamp(18px, 6vw, 32px);
    }

    .pzx-hero-desc {
        display: none;
    }

    /* Mobil: okları gizle, kullanıcı kaydırsın */
    .pzx-hero-next,
    .pzx-hero-prev {
        display: none !important;
    }

    /* Mobil: pagination noktaları alta, biraz büyük */
    .pzx-hero-pagination {
        bottom: 10px !important;
    }

    .pzx-hero-pagination .swiper-pagination-bullet {
        width: 6px !important;
        height: 6px !important;
    }

    .pzx-hero-pagination .swiper-pagination-bullet-active {
        width: 18px !important;
    }

    .pzx-hero-btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    .pzx-footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pzx-footer-col {
        text-align: center;
    }

    .pzx-footer-social {
        justify-content: center;
    }

    .pzx-footer-payments {
        justify-content: center;
    }

    /* Instagram Gallery Responsive */
    .pzx-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .pzx-instagram-title {
        font-size: 14px;
        padding: 0 15px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SPOTLIGHT - ÖNE ÇIKAN ÜRÜN (pazarix BİREBİR AYNI)
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-spotlight {
    background: #f0f0f0;
    padding: 0;
    margin-top: 40px;
    /* Üstteki alanla boşluk */
}

.pzx-spotlight-inner {
    display: flex;
    min-height: 670px;
}

/* Sol Taraf - İçerik (37%) */
.pzx-spotlight-content {
    flex: 0 0 37%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: #f0f0f0;
}

.pzx-spotlight-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #404653;
    line-height: 58px;
    margin-bottom: 32px;
}

.pzx-spotlight-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 24px;
}

.pzx-spotlight-old {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.pzx-spotlight-current {
    font-size: 32px;
    font-weight: 500;
    color: #fa766a;
}

.pzx-spotlight-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pzx-spotlight-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
    padding: 10px;
}

.pzx-spotlight-cart {
    background: #404653;
    color: #fff;
    border: 3px solid #404653;
}

.pzx-spotlight-cart:hover {
    background: #2d3440;
    border-color: #2d3440;
    transform: scale(1.05);
}

.pzx-spotlight-view {
    background: transparent;
    color: #404653;
    border: 3px solid #404653;
}

.pzx-spotlight-view:hover {
    background: #404653;
    color: #fff;
}

/* Sağ Taraf - Görsel (63%) */
.pzx-spotlight-image {
    flex: 0 0 63%;
    position: relative;
    overflow: hidden;
    background: #e5e5e5;
}

.pzx-spotlight-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.pzx-spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.pzx-spotlight-image:hover img {
    transform: scale(1.03);
}

/* Spotlight Responsive */
@media (max-width: 992px) {
    .pzx-spotlight-inner {
        flex-direction: column;
        min-height: auto;
    }

    .pzx-spotlight-content {
        flex: none;
        padding: 40px 30px;
        order: 2;
    }

    .pzx-spotlight-image {
        flex: none !important;
        order: 1;
        width: 100% !important;
        height: 400px !important;
        min-height: 400px !important;
        max-height: none !important;
        position: relative;
        overflow: hidden;
        display: block !important;
    }

    .pzx-spotlight-image a {
        display: block !important;
        width: 100% !important;
        height: 400px !important;
    }

    .pzx-spotlight-image img {
        display: block !important;
        width: 100% !important;
        height: 400px !important;
        object-fit: cover !important;
        object-position: center top !important;
    }

    .pzx-spotlight-title {
        font-size: 32px;
        line-height: 40px;
    }

    .pzx-spotlight-current {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .pzx-spotlight-title {
        font-size: 26px;
        line-height: 34px;
    }

    .pzx-spotlight-current {
        font-size: 22px;
    }

    .pzx-spotlight-btn {
        width: 70px;
        height: 70px;
        font-size: 10px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MIDDLE SLIDER - (pazarix STYLE CAROUSEL)
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-middle-slider {
    padding: 0;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 40px;
}

.pzx-middle-slider-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding-bottom: 0;
    /* Scrollbar space */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.pzx-middle-slider-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.pzx-ms-item {
    flex: 0 0 100%;
    /* Full width single item */
    scroll-snap-align: start;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pzx-ms-item img {
    width: 100%;
    height: auto;
    /* Let image define height naturally like pazarix.com */
    display: block;
    border-radius: 0;
}

.pzx-ms-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    /* Auto height handles responsiveness */
}

@media (max-width: 576px) {
    .pzx-ms-item {
        /* Full width already set */
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STORY VITRIN - pazarix STYLE (Instagram Stories)
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-story-section {
    background: #fff;
    padding: 25px 0;
    overflow: hidden;
}

.pzx-story-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 10px 0;
}

.pzx-story-wrapper::-webkit-scrollbar {
    display: none;
}

.pzx-story-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.pzx-story-item:hover {
    transform: translateY(-3px);
}

.pzx-story-avatar {
    position: relative;
    width: 80px;
    height: 80px;
}

.pzx-story-avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
    border-radius: 50%;
    z-index: 0;
}

.pzx-story-avatar img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    z-index: 1;
    background: #f0f0f0;
}

.pzx-story-name {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    text-align: center;
    max-width: 90px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Viewed Story State */
.pzx-story-item.is-viewed .pzx-story-avatar::before {
    background: #ccc;
}

/* Story Navigation Arrows */

/* ═══════════════════════════════════════════════════════════════════════════
   BRANDS SECTION (MARKALAR ALANI)
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-brands-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #f1f1f1;
}

.pzx-brands-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.pzx-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 90px;
    transition: all 0.3s ease;
    opacity: 0.6;
    filter: grayscale(100%);
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 8px;
}

.pzx-brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.pzx-brand-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-color: #eee;
}

@media (max-width: 768px) {
    .pzx-brands-wrapper {
        gap: 20px;
        justify-content: center;
    }

    .pzx-brand-item {
        width: 110px;
        height: 70px;
    }
}

.pzx-story-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pzx-story-nav:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.pzx-story-nav.prev {
    left: 10px;
}

.pzx-story-nav.next {
    right: 10px;
}

.pzx-story-container {
    position: relative;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .pzx-story-avatar {
        width: 65px;
        height: 65px;
    }

    .pzx-story-wrapper {
        gap: 15px;
    }

    .pzx-story-name {
        font-size: 11px;
        max-width: 70px;
    }

    .pzx-story-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .pzx-story-avatar {
        width: 60px;
        height: 60px;
    }

    .pzx-story-wrapper {
        gap: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG SECTION (pazarix STYLE)
   ═══════════════════════════════════════════════════════════════════════════ */

.pzx-blog-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.pzx-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.pzx-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pzx-section-link {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pzx-section-link:hover {
    color: #000;
}

.pzx-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pzx-blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    /* Blog Card Container */
    background: transparent;
    border: none;
    box-shadow: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pzx-blog-card:hover {
    transform: none;
    box-shadow: none;
}

.pzx-blog-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* Strict 1:1 Square Aspect Ratio */
    overflow: hidden;
    background: #f4f4f4;
    margin-bottom: 24px;
}

.pzx-blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Using cover for best aesthetic on lifestyle images */
    transition: transform 0.3s ease-in-out;
}

.pzx-blog-card:hover .pzx-blog-image img {
    transform: scale(1.1);
    /* Zoom effect */
}

.pzx-blog-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

/* Blog Card Design */
.pzx-blog-title {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    /* Matches 18.84px */
    font-weight: 500;
    color: #000;
    line-height: 1.5;
    margin: 10px 0 16px 0;
    /* Spacing */
    text-transform: none;
}

.pzx-blog-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.pzx-blog-title a:hover {
    color: #000;
}

.pzx-blog-meta {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #303030;
    margin-bottom: 0;
    /* Let description spacing handle it */
    display: flex;
    align-items: center;
    gap: 8px;
}

.pzx-blog-meta i {
    font-size: 13px;
    color: #303030;
    margin-right: 0;
}

.pzx-blog-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #000;
    font-weight: 300;
    line-height: 1.6;
    padding-top: 16px;
    /* Padding */
    margin-bottom: 24px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pzx-blog-read-more {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #32303d;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    align-self: flex-start;
    margin-top: auto;
    padding-bottom: 4px;
    /* Space for underline */
    letter-spacing: 0;
    border: none;
}

.pzx-blog-read-more::after {
    content: "";
    display: block;
    height: 1px;
    background-color: #32303d;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.pzx-blog-read-more:hover {
    color: #000;
}

.pzx-blog-read-more:hover::after {
    background-color: #000;
}

@media (max-width: 991px) {
    .pzx-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pzx-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pzx-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pzx-section-title {
        font-size: 20px;
    }
}

/* ========================================
   LUXURY SHOWCASE (ZEKI TRIKO STYLE)
   ======================================== */

.pzx-luxury-showcase {
    display: block !important;
    width: 100% !important;
    margin: 60px 0;
    padding: 0;
    overflow: hidden;
    background-color: #fcefd6;
    /* Zeki Triko Beige */
}

.pzx-ls-wrapper {
    position: relative;
    width: 100%;
}

.pzx-ls-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /* Sabit yükseklik, Zeki Triko'daki gibi sinematik oran */
    height: 700px;
    background-color: #fcefd6;
}

/* SOL TARAF: GÖRSEL (%50) */
.pzx-ls-image-side {
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pzx-ls-image-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 2.5s ease;
    padding: 50px;
}

.pzx-ls-container:hover .pzx-ls-image-side img {
    transform: scale(1.04);
}

/* SAĞ TARAF: İÇERİK (%50) */
.pzx-ls-content-side {
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    background-color: #fcefd6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Sola dayalı */
    padding: 0 12%;
    /* Geniş iç boşluk */
    position: relative;
}

/* BAŞLIK - Zeki Triko Font Style */
.pzx-ls-title {
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-size: 36px;
    /* Büyük punto */
    font-weight: 500;
    /* Orta kalınlık */
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    line-height: 1.1;
}

/* AÇIKLAMA / ALT BAŞLIK */
.pzx-ls-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* BUTON (KESFET) - ZEKI TRIKO STYLE */
.pzx-ls-btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.pzx-ls-btn:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* COUNTDOWN TIMER */
.pzx-ls-countdown {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    font-family: 'Inter', sans-serif;
}

.pzx-ls-countdown-item {
    text-align: center;
}

.pzx-ls-count-val {
    display: block;
    font-size: 34px;
    font-weight: 300;
    color: #000;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.pzx-ls-count-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.pzx-ls-expired {
    color: #e53935;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* NAVIGASYON NOKTALARI (SLIDER İÇİN) - ORTALI */
.pzx-ls-nav-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.pzx-ls-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.pzx-ls-dot.active {
    background: #000;
    border-color: #000;
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .pzx-ls-container {
        height: auto;
        flex-direction: column;
    }

    .pzx-ls-image-side {
        width: 100%;
        height: 550px;
        /* Mobilde görsel yüksekliği */
        flex: none;
    }

    .pzx-ls-content-side {
        width: 100%;
        height: auto;
        padding: 60px 30px;
        flex: none;
        align-items: center;
        /* Mobilde ortala */
        justify-content: center;
        text-align: center;
    }

    .pzx-ls-title {
        font-size: 28px;
    }

    .pzx-ls-desc {
        text-align: center;
    }
}

/* --- KOLEKSİYONLAR VITRINI (Premium Showcase Style) --- */
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');

.pzx-collections-section {
    padding: 60px 0;
    overflow: hidden;
    background: #fff;
    width: 100%;
    position: relative;
}

.pzx-c-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.pzx-c-slider {
    width: 100%;
    padding-bottom: 50px !important;
    overflow: visible !important;
    /* Allow slides to peek */
}

/* Swiper styling override */
.pzx-c-slider .swiper-wrapper {
    align-items: center;
}

.pzx-c-slide {
    width: 280px;
    /* Reduced Mobile Width */
    height: auto;
    transition: all 0.5s ease;
    /* Inactive State Defaults */
    opacity: 1;

    z-index: 1;
    position: relative;
    /* Ensure no flex growing */
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .pzx-c-slide {
        width: 450px;
        /* Tablet Width */
    }
}

@media (min-width: 1200px) {
    .pzx-c-slide {
        width: 894px !important;
        /* Fixed Width */
        height: 340px !important;
        /* Inactive Height */
        transition: height 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease;
    }

    .pzx-c-slide.swiper-slide-active {
        height: 426px !important;
        /* Active Height */
    }
}

/* Center slides vertically so they grow from middle */
.pzx-c-slider .swiper-wrapper {
    align-items: center;
}

/* Modern Styles: Border Radius & Shadows */
.pzx-c-slide {
    border-radius: 12px;
    /* Modern rounded corners */
    overflow: hidden;
    /* Mask content to radius */
}

.pzx-c-slide.swiper-slide-active {
    transform: none;
    /* Disable scale transform to use strict height */
    z-index: 10;
    /* Deep, multi-layered shadow for pop effect */
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.2);
}

.pzx-c-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    /* Fill slide height */
    overflow: hidden;
    background: #000;
    border-radius: 12px;
    /* Ensure wrapper respects radius */
}

.pzx-c-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smoother bezier */
    opacity: 0.95;
    backface-visibility: hidden;
    /* Performance fix */
}

.pzx-c-slide:hover .pzx-c-img-wrapper img {
    transform: scale(1.08);
    /* Slightly more aggressive zoom */
    opacity: 1;
}

/* Gradient Overlay for Modern Look */
.pzx-c-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    /* Subtle gradient */
    transition: all 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.pzx-c-slide.swiper-slide-active .pzx-c-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    /* Darker active overlay for better text contrast */
    backdrop-filter: none;
}

/* Darker overlay for inactive slides to make active pop more */
.swiper-slide:not(.swiper-slide-active) .pzx-c-overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* Content */
.pzx-c-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.pzx-c-main-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    /* Stronger shadow for readability */
    margin-bottom: -5px;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    /* Modern spacing */
}

.pzx-c-sub-text {
    font-family: 'Great Vibes', cursive;
    /* More elegant signature style */
    font-size: 42px;
    /* Increased size as this font is naturally smaller */
    color: #E31E24;
    /* Theme Red */
    font-weight: 400;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 1);
    /* Sharper contrast */
    transform: rotate(-5deg);
    /* More pronounced angle like signature */
    position: relative;
    z-index: 3;
    display: block;
    margin-top: -10px;
    /* Pull closer to main text */
}

@media (min-width: 768px) {
    .pzx-c-main-text {
        font-size: 48px;
        margin-bottom: -15px;
    }

    .pzx-c-sub-text {
        font-size: 64px;
        /* Larger size for desktop to match readability */
    }


}

@media (min-width: 1200px) {
    .pzx-c-main-text {
        font-size: 64px;
        margin-bottom: -20px;
    }

    .pzx-c-sub-text {
        font-size: 72px;
    }
}

/* Nav Arrows */
.pzx-c-nav-btn {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.pzx-c-prev {
    left: 20px;
}

.pzx-c-next {
    right: 20px;
}

.pzx-c-nav-btn svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.5));
}

.pzx-c-nav-btn:hover svg {
    stroke: #E31E24;
}

.swiper-pagination-bullet-active {
    background: #E31E24 !important;
}