/**
 * 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-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

/* Navigation Item (Wrapper) */
.pzx-nav-item {
    position: relative;
}

/* Navigation Link - Premium Style */
.pzx-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 18px 22px;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

/* Hover Underline Effect */
.pzx-nav-link::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 22px;
    right: 22px;
    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;
}

.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;
    /* pazarix ile birebir aynı - ekranın %88'i */
    min-height: 600px;
    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: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.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;
}

/* ═══════════════════════════════════════════════════════════════════════════
   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: cover;
    /* Görseli doldur */
    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 - Grid 3 cols */
.pzx-bp-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 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 {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   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-inner {
        flex-direction: column;
        text-align: center;
    }

    .pzx-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .pzx-footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pzx-header-inner {
        flex-wrap: wrap;
        gap: 16px;
    }

    .pzx-search {
        order: 3;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }

    .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-title {
        font-size: 32px;
    }

    .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;
        order: 1;
        min-height: 400px;
    }

    .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;
}/ *    "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   
       A U T H   P A G E S   ( L o g i n   /   R e g i s t e r )   -   P r e m i u m   M o d e r n  
        "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "   "    * /  
  
 . p z x - a u t h - w r a p p e r   {  
         b a c k g r o u n d - c o l o r :   # f 7 f 7 f 7 ;  
         m i n - h e i g h t :   c a l c ( 1 0 0 v h   -   2 0 0 p x ) ;  
         / *   F i l l   s p a c e   b e t w e e n   h e a d e r / f o o t e r   * /  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         a l i g n - i t e m s :   c e n t e r ;  
         / *   C e n t e r   V e r t i c a l l y   * /  
         p a d d i n g :   8 0 p x   2 0 p x ;  
 }  
  
 . p z x - a u t h - c o n t a i n e r   {  
         w i d t h :   1 0 0 % ;  
         m a x - w i d t h :   5 0 0 p x ;  
         / *   C e n t e r e d   c a r d   w i d t h   * /  
         m a r g i n :   0   a u t o ;  
 }  
  
 / *   W i d e   C o n t a i n e r   f o r   R e g i s t e r   P a g e   i f   n e e d e d   * /  
 . p z x - a u t h - c o n t a i n e r . i s - w i d e   {  
         m a x - w i d t h :   6 0 0 p x ;  
 }  
  
 . p z x - a u t h - c a r d   {  
         b a c k g r o u n d :   # f f f ;  
         p a d d i n g :   5 0 p x ;  
         b o r d e r - r a d i u s :   1 6 p x ;  
         b o x - s h a d o w :   0   1 0 p x   4 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 6 ) ;  
 }  
  
 . p z x - a u t h - h e a d e r   {  
         t e x t - a l i g n :   c e n t e r ;  
         m a r g i n - b o t t o m :   4 0 p x ;  
 }  
  
 . p z x - a u t h - i c o n   {  
         f o n t - s i z e :   4 0 p x ;  
         m a r g i n - b o t t o m :   1 5 p x ;  
         c o l o r :   # 0 0 0 ;  
 }  
  
 . p z x - a u t h - t i t l e   {  
         f o n t - s i z e :   2 6 p x ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   # 0 0 0 ;  
         m a r g i n - b o t t o m :   1 0 p x ;  
 }  
  
 / *   H i d e   o l d   h e a d e r   * /  
 . u s e r _ p a g e _ h e a d e r   {  
         d i s p l a y :   n o n e   ! i m p o r t a n t ;  
 }  
  
 . p z x - a u t h - s u b t i t l e   {  
         f o n t - s i z e :   1 4 p x ;  
         c o l o r :   # 6 6 6 ;  
         l i n e - h e i g h t :   1 . 5 ;  
 }  
  
 . p z x - a u t h - f o r m   . f o r m - g r o u p   {  
         m a r g i n - b o t t o m :   2 4 p x ;  
 }  
  
 / *   R e m o v e   d e f a u l t   B o o t s t r a p   f o r m - g r o u p   m a r g i n s   i f   c o n f l i c t ,   b u t   . p z x - a u t h - f o r m   w r a p p e r   h a n d l e s   s p e c i f i c i t y   * /  
  
 . p z x - a u t h - l a b e l   {  
         d i s p l a y :   b l o c k ;  
         f o n t - s i z e :   1 3 p x ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   # 0 0 0 ;  
         m a r g i n - b o t t o m :   8 p x ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         l e t t e r - s p a c i n g :   0 . 5 p x ;  
 }  
  
 . p z x - a u t h - i n p u t   {  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   5 2 p x ;  
         p a d d i n g :   0   2 0 p x   0   2 0 p x ;  
         / *   L e f t   p a d d i n g   * /  
         b a c k g r o u n d :   # f 9 f 9 f 9 ;  
         b o r d e r :   1 p x   s o l i d   # e 1 e 1 e 1 ;  
         b o r d e r - r a d i u s :   6 p x ;  
         f o n t - s i z e :   1 4 p x ;  
         c o l o r :   # 0 0 0 ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 / *   O v e r r i d e   B o o t s t r a p   f o r m - c o n t r o l   i f   n e e d e d   * /  
 . p z x - a u t h - f o r m   . f o r m - c o n t r o l   {  
         h e i g h t :   5 2 p x ;  
         p a d d i n g :   0   2 0 p x ;  
         b a c k g r o u n d :   # f 9 f 9 f 9 ;  
         b o r d e r :   1 p x   s o l i d   # e 1 e 1 e 1 ;  
         b o r d e r - r a d i u s :   6 p x ;  
         f o n t - s i z e :   1 4 p x ;  
         c o l o r :   # 0 0 0 ;  
         b o x - s h a d o w :   n o n e ;  
 }  
  
 . p z x - a u t h - f o r m   . f o r m - c o n t r o l : f o c u s   {  
         b a c k g r o u n d :   # f f f ;  
         b o r d e r - c o l o r :   # 0 0 0 ;  
         o u t l i n e :   n o n e ;  
         b o x - s h a d o w :   0   0   0   4 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
 }  
  
 . p z x - a u t h - b t n   {  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   5 4 p x ;  
         b a c k g r o u n d :   # 0 0 0 ;  
         c o l o r :   # f f f ;  
         f o n t - s i z e :   1 4 p x ;  
         f o n t - w e i g h t :   7 0 0 ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         l e t t e r - s p a c i n g :   1 p x ;  
         b o r d e r :   n o n e ;  
         b o r d e r - r a d i u s :   6 p x ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         m a r g i n - t o p :   1 0 p x ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
 }  
  
 . p z x - a u t h - b t n : h o v e r   {  
         b a c k g r o u n d :   # 3 3 3 ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;  
 }  
  
 . p z x - a u t h - l i n k s   {  
         m a r g i n - t o p :   2 5 p x ;  
         t e x t - a l i g n :   c e n t e r ;  
         f o n t - s i z e :   1 3 p x ;  
         c o l o r :   # 6 6 6 ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         g a p :   1 0 p x ;  
 }  
  
 . p z x - a u t h - l i n k s   a   {  
         c o l o r :   # 0 0 0 ;  
         f o n t - w e i g h t :   6 0 0 ;  
         t e x t - d e c o r a t i o n :   u n d e r l i n e ;  
         t r a n s i t i o n :   o p a c i t y   0 . 2 s ;  
 }  
  
 . p z x - a u t h - l i n k s   a : h o v e r   {  
         o p a c i t y :   0 . 7 ;  
 }  
  
 / *   R a d i o   B u t t o n   T o g g l e   ( f o r   R e g i s t e r   P a g e )   * /  
 . p z x - a u t h - r a d i o - g r o u p   {  
         d i s p l a y :   f l e x ;  
         g a p :   1 5 p x ;  
         m a r g i n - b o t t o m :   3 0 p x ;  
 }  
  
 . p z x - a u t h - r a d i o - i t e m   {  
         f l e x :   1 ;  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . p z x - a u t h - r a d i o - i t e m   i n p u t [ t y p e = " r a d i o " ]   {  
         p o s i t i o n :   a b s o l u t e ;  
         o p a c i t y :   0 ;  
         c u r s o r :   p o i n t e r ;  
         h e i g h t :   0 ;  
         w i d t h :   0 ;  
 }  
  
 . p z x - a u t h - r a d i o - i t e m   l a b e l   {  
         d i s p l a y :   b l o c k ;  
         t e x t - a l i g n :   c e n t e r ;  
         p a d d i n g :   1 4 p x ;  
         b a c k g r o u n d :   # f f f ;  
         b o r d e r :   1 p x   s o l i d   # e 1 e 1 e 1 ;  
         b o r d e r - r a d i u s :   6 p x ;  
         c u r s o r :   p o i n t e r ;  
         f o n t - w e i g h t :   6 0 0 ;  
         f o n t - s i z e :   1 3 p x ;  
         c o l o r :   # 6 6 6 ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         m a r g i n :   0 ;  
         / *   B o o t s t r a p   c r e a t e s   m a r g i n - b o t t o m   f o r   l a b e l s   * /  
 }  
  
 / *   C h e c k e d   s t a t e   * /  
 . p z x - a u t h - r a d i o - i t e m   i n p u t [ t y p e = " r a d i o " ] : c h e c k e d + l a b e l   {  
         b a c k g r o u n d :   # 0 0 0 ;  
         c o l o r :   # f f f ;  
         b o r d e r - c o l o r :   # 0 0 0 ;  
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ;  
 }  
  
 / *   R e m o v e   o l d   r d i o   c l a s s e s   e f f e c t s   i f   n e c e s s a r y   * /  
 . p z x - a u t h - r a d i o - i t e m   . r d i o   {  
         p a d d i n g :   0 ;  
 }  
  
 / *   P a s s w o r d   E y e   P o s i t i o n   * /  
 . p a s s w o r d - a b s o l u t e   {  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . t o g g l e - p a s s w o r d   {  
         p o s i t i o n :   a b s o l u t e ;  
         r i g h t :   3 5 p x ;  
         / *   A d j u s t   f o r   p a d d i n g   * /  
         t o p :   5 2 p x ;  
         / *   A d j u s t   b a s e d   o n   l a b e l   h e i g h t   +   i n p u t   p a d d i n g   * /  
         c u r s o r :   p o i n t e r ;  
         c o l o r :   # 9 9 9 ;  
 }  
  
 . p z x - a u t h - w r a p p e r   . t o g g l e - p a s s w o r d   {  
         t o p :   4 5 p x ;  
         / *   F i n e   t u n e   * /  
         r i g h t :   1 5 p x ;  
 }  
  
 / *   M o b i l e   R e s p o n s i v e   * /  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . p z x - a u t h - w r a p p e r   {  
                 p a d d i n g :   4 0 p x   2 0 p x ;  
         }  
  
         . p z x - a u t h - c a r d   {  
                 p a d d i n g :   3 0 p x   2 0 p x ;  
         }  
  
         . p z x - a u t h - t i t l e   {  
                 f o n t - s i z e :   2 2 p x ;  
         }  
 }  
 