/* ============================================
   CEVHERAN — Mücevherat E-Ticaret Tema CSS
   Kaynak: html-prototype/css/style.css + sayfa inline CSS'leri
   ============================================ */

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
    --gold-dark: #A07C2A;
    --diamond: #B4C8DC;
    --bg-dark: #0D0D0D;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --text-primary: #F5F0E8;
    --text-secondary: #9A948A;
    --text-muted: #6B655B;
    --border: #2A2A2A;
    --border-light: #333;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius: 8px;
    --radius-lg: 12px;
    --container: 1240px;
    --header-h: 68px;
}

html {
    scroll-behavior: smooth;
}

.cevheran-body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 0;
}

.cevheran-body a {
    color: inherit;
    text-decoration: none;
}

.cevheran-body img {
    max-width: 100%;
    display: block;
}

.cevheran-body button {
    font-family: inherit;
    cursor: pointer;
}

.cevheran-body .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* === DUYURU BANDI === */
.announcement-bar {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    max-height: 36px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.announcement-bar strong {
    font-weight: 700;
}

/* === HEADER === */
.cevheran-body .header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    height: var(--header-h);
    gap: 24px;
}

.cevheran-body .logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--gold);
    flex-shrink: 0;
}

/* --- Arama Kutusu --- */
.header-search {
    flex: 1;
    max-width: 520px;
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 0 4px 0 16px;
    transition: border-color 0.25s;
}

.header-search:focus-within {
    border-color: var(--gold);
}

.header-search .search-icon {
    color: var(--text-muted);
    flex-shrink: 0;
    margin-right: 10px;
}

.header-search input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.875rem;
    padding: 10px 0;
    outline: none;
}

.header-search input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    border-radius: 20px;
    padding: 7px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: background 0.2s;
}

.search-btn:hover {
    background: var(--gold-light);
}

/* --- Header İkonları --- */
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
}

.icon-btn:hover {
    color: var(--gold);
}

.icon-label {
    font-size: 0.65rem;
    letter-spacing: 0.02em;
}

.icon-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === HEADER NAV === */
.header-nav {
    display: flex;
    gap: 4px;
    margin-left: 12px;
}

.header-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.25s;
    border: 1px solid transparent;
}

.header-nav .nav-gold {
    color: var(--gold);
    border-color: rgba(201, 168, 76, 0.3);
}

.header-nav .nav-gold:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.header-nav .nav-diamond {
    color: var(--diamond);
    border-color: rgba(180, 200, 220, 0.3);
}

.header-nav .nav-diamond:hover {
    background: var(--diamond);
    color: var(--bg-dark);
}

/* === KATEGORİ NAV BAR === */
.category-bar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.category-bar-inner {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.category-bar-inner::-webkit-scrollbar {
    display: none;
}

.catbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.25s;
    flex-shrink: 0;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary);
    text-decoration: none;
}

.catbar-item:hover {
    color: var(--text-primary);
    background: rgba(201, 168, 76, 0.04);
}

.catbar-item.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.catbar-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.25s;
}

.catbar-item:hover .catbar-icon {
    border-color: var(--gold-dark);
}

.catbar-item.active .catbar-icon {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.catbar-name {
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

/* === HERO === */
.hero {
    text-align: center;
    padding: 80px 24px 72px;
    background: linear-gradient(180deg, #111 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 32px;
}

.hero-desc span {
    color: var(--gold);
    font-weight: 600;
}

.hero-cta {
    display: inline-block;
    padding: 14px 48px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s;
}

.hero-cta:hover {
    background: var(--gold-light);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.25);
}

/* === SPLIT HERO === */
.split-hero {
    display: flex;
    min-height: 420px;
}

.split-hero-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s ease;
}

.split-hero-half::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at center, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 60%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.split-hero-half:hover {
    flex: 1.15;
}

.split-hero-half::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
}

.split-hero-half:hover::before {
    opacity: 1;
}

.split-gold {
    background: linear-gradient(135deg, #1A1508 0%, #12100a 100%);
}

.split-hero-half .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 0;
}

.split-hero-half .hero-bg.active {
    opacity: 0.55;
}

.split-gold .hero-bg {
    filter: sepia(0.3) saturate(1.2) brightness(0.8);
}

.split-diamond .hero-bg {
    filter: saturate(0.5) brightness(0.7) contrast(1.05);
}

.split-hero-half:hover .hero-bg.active {
    opacity: 0.7;
}

.hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
}

.hero-dot.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.split-gold::before {
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
}

.split-gold .split-icon {
    color: var(--gold);
}

.split-gold .split-title {
    color: var(--gold);
}

.split-diamond {
    background: linear-gradient(135deg, #10121a 0%, #0e0f14 100%);
}

.split-diamond::before {
    background: radial-gradient(circle at center, rgba(180, 200, 220, 0.12) 0%, transparent 70%);
}

.split-diamond .split-icon {
    color: var(--diamond);
}

.split-diamond .split-title {
    color: var(--diamond);
}

.split-icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.split-icon svg {
    width: 56px;
    height: 56px;
}

.split-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.split-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 0, 0, 0.4);
}

.split-cta {
    display: inline-block;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.split-gold .split-cta {
    background: var(--gold);
    color: var(--bg-dark);
}

.split-gold .split-cta:hover {
    background: var(--gold-light);
    color: var(--bg-dark);
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.4);
}

.split-diamond .split-cta {
    background: var(--diamond);
    color: var(--bg-dark);
}

.split-diamond .split-cta:hover {
    background: #d0dfec;
    color: var(--bg-dark);
    box-shadow: 0 4px 24px rgba(180, 200, 220, 0.4);
}

/* Brand bar */
.brand-bar {
    text-align: center;
    padding: 20px;
    background: var(--bg-dark);
}

.brand-bar .logo {
    font-size: 1.2rem;
}

.brand-bar p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* === GÜVEN ROZETLERİ === */
.trust-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.trust-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.trust-bar-inner::-webkit-scrollbar {
    display: none;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    color: var(--text-secondary);
}

.trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.trust-item span {
    font-size: 0.68rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* === SECTIONS & TABS === */
.section {
    padding: 64px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 12px auto 0;
}

.l1-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 24px 0 40px;
}

.l1-tab {
    padding: 8px 24px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.25s;
}

.l1-tab:hover {
    border-color: var(--gold-dark);
    color: var(--text-primary);
}

.l1-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
    font-weight: 600;
}

/* === KATEGORİ KARTLARI === */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card .card-icon {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.category-card .card-l1 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 4px;
}

.category-card .card-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.category-card .card-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* === ÜRÜN KARTLARI === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.product-card .card-image {
    width: 100%;
    aspect-ratio: 1;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    overflow: hidden;
    position: relative;
}

.product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card .card-brand {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 3px;
}

.product-card .card-title {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.product-card .card-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.01em;
}

.product-card .card-price .old-price {
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 6px;
}

.product-card .card-cart-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
    flex-shrink: 0;
}

.product-card .card-cart-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.product-card .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.product-card .card-category {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    padding: 2px 7px;
    border-radius: 10px;
    font-size: 0.6rem;
}

/* === BREADCRUMB (birleştirilmiş) === */
.breadcrumb {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb-inner a {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.breadcrumb-inner a:hover {
    color: var(--gold);
}

.breadcrumb-inner .sep {
    color: var(--text-muted);
    font-size: 0.65rem;
}

.breadcrumb-inner .current {
    color: var(--text-primary);
}

/* arama.html breadcrumb varyantı */
.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .sep {
    margin: 0 8px;
    opacity: 0.4;
}

.breadcrumb .current {
    color: var(--text-secondary);
}

/* Breadcrumb bar (ürün detay sayfası) */
.breadcrumb-bar {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-bar .breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb-bar .breadcrumb-inner a {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.breadcrumb-bar .breadcrumb-inner a:hover {
    color: var(--gold);
}

.breadcrumb-bar .breadcrumb-inner .sep {
    color: var(--text-muted);
    font-size: 0.65rem;
}

.breadcrumb-bar .breadcrumb-inner .current {
    color: var(--text-primary);
}

/* Ürün detay sayfası tam sayfa wrapper */
.product-detail-page {
    padding-bottom: 48px;
}

/* Responsive: ürün detay tam sayfa */
@media (max-width: 768px) {
    .product-detail-page .product-detail {
        flex-direction: column;
        gap: 24px;
        padding: 24px 0 32px;
    }

    .product-detail-page .pd-image-col {
        max-width: 100%;
        position: static;
    }

    .product-detail-page .pd-title {
        font-size: 1.3rem;
    }

    .product-detail-page .pd-price {
        font-size: 1.5rem;
    }

    .product-detail-page .pd-actions {
        flex-direction: column;
    }

    .product-detail-page .pd-add-cart {
        width: 100%;
    }

    .product-detail-page .pd-trust {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* === KOLEKSİYON VİTRİN (index) === */
.collection-showcase {
    padding: 56px 0 44px;
}

.collection-showcase+.collection-showcase {
    padding-top: 16px;
}

.showcase-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.showcase-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-title-row svg {
    opacity: 0.85;
}

.showcase-title-row h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.showcase-header.altin .showcase-title-row h2 {
    color: var(--gold);
}

.showcase-header.altin .showcase-title-row svg {
    stroke: var(--gold);
}

.showcase-header.pirlanta .showcase-title-row h2 {
    color: var(--diamond);
}

.showcase-header.pirlanta .showcase-title-row svg {
    stroke: var(--diamond);
}

.showcase-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.showcase-nav a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 2px 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.25s;
    letter-spacing: 0.04em;
    white-space: nowrap;
    font-weight: 500;
}

.showcase-header.altin .showcase-nav a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.showcase-header.pirlanta .showcase-nav a:hover {
    color: var(--diamond);
    border-bottom-color: var(--diamond);
}

.showcase-header .showcase-link {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.06em;
    transition: color 0.2s;
    text-transform: uppercase;
}

.showcase-header.altin .showcase-link:hover {
    color: var(--gold);
}

.showcase-header.pirlanta .showcase-link:hover {
    color: var(--diamond);
}

.cat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.cat-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    width: calc((100% - 40px) / 6);
    aspect-ratio: 5/3;
    text-decoration: none;
    display: block;
}

.cat-card img {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5) saturate(0.8);
    transition: filter 0.45s, transform 0.45s;
}

.cat-card:hover img {
    filter: brightness(0.65) saturate(1);
    transform: scale(1.04);
}

.cat-info {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.cat-info .cat-name {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
    padding: 6px 18px;
    position: relative;
    z-index: 1;
}

.cat-info .cat-name::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 2px;
    transform: skewX(-4deg);
    background: linear-gradient(92deg,
            rgba(201, 168, 76, 0) 0%,
            rgba(201, 168, 76, 0.75) 12%,
            rgba(180, 148, 56, 0.85) 35%,
            rgba(201, 168, 76, 0.88) 65%,
            rgba(201, 168, 76, 0.7) 88%,
            rgba(201, 168, 76, 0) 100%);
}

.altin .cat-info .cat-name::before {
    background: linear-gradient(92deg,
            rgba(201, 168, 76, 0) 0%,
            rgba(201, 168, 76, 0.75) 12%,
            rgba(180, 148, 56, 0.85) 35%,
            rgba(201, 168, 76, 0.88) 65%,
            rgba(201, 168, 76, 0.7) 88%,
            rgba(201, 168, 76, 0) 100%);
}

.pirlanta .cat-info .cat-name::before {
    background: linear-gradient(92deg,
            rgba(130, 160, 190, 0) 0%,
            rgba(130, 160, 190, 0.7) 12%,
            rgba(120, 150, 180, 0.82) 35%,
            rgba(130, 160, 190, 0.85) 65%,
            rgba(130, 160, 190, 0.65) 88%,
            rgba(130, 160, 190, 0) 100%);
}

.cat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 42%, rgba(255, 255, 255, 0.06) 50%, transparent 58%);
    transition: transform 0.6s;
    transform: translateX(-120%);
    pointer-events: none;
}

.cat-card:hover::after {
    transform: translateX(30%);
}

/* === L1 KOLEKSİYON SAYFASI === */
.l1-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.l1-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.l1-hero-bg.active {
    opacity: 0.4;
}

.l1-hero.gold .l1-hero-bg {
    filter: sepia(0.3) saturate(1.2) brightness(0.6);
}

.l1-hero.diamond .l1-hero-bg {
    filter: saturate(0.5) brightness(0.5) contrast(1.05);
}

.l1-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(13, 13, 13, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
}

.l1-hero.gold {
    background: linear-gradient(135deg, #1A1508 0%, #0D0D0D 100%);
}

.l1-hero.diamond {
    background: linear-gradient(135deg, #0D0F15 0%, #0D0D0D 100%);
}

.l1-hero-content {
    position: relative;
    z-index: 2;
    padding: 56px 24px;
}

.l1-hero-icon {
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.l1-hero-icon svg {
    width: 56px;
    height: 56px;
}

.l1-hero-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.l1-hero-title {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.l1-hero.gold .l1-hero-title {
    color: var(--gold);
}

.l1-hero.diamond .l1-hero-title {
    color: var(--diamond);
}

.l1-hero-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.l1-hero-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.l1-hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
}

.l1-hero-dot.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

/* L1 Kategori Vitrin */
.l1-categories {
    padding: 56px 0 44px;
}

.l1-cat-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.l1-cat-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.l1-cat-title-row svg {
    opacity: 0.85;
}

.l1-cat-title-row h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.l1-cat-header.gold .l1-cat-title-row h2 {
    color: var(--gold);
}

.l1-cat-header.gold .l1-cat-title-row svg {
    stroke: var(--gold);
}

.l1-cat-header.diamond .l1-cat-title-row h2 {
    color: var(--diamond);
}

.l1-cat-header.diamond .l1-cat-title-row svg {
    stroke: var(--diamond);
}

.l1-cat-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.l1-cat-nav a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 2px 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.25s;
    letter-spacing: 0.04em;
    white-space: nowrap;
    font-weight: 500;
}

.l1-cat-header.gold .l1-cat-nav a:hover,
.l1-cat-header.gold .l1-cat-nav a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.l1-cat-header.diamond .l1-cat-nav a:hover,
.l1-cat-header.diamond .l1-cat-nav a.active {
    color: var(--diamond);
    border-bottom-color: var(--diamond);
}

.l1-cat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.l1-cat-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    width: calc((100% - 40px) / 6);
    aspect-ratio: 5/3;
    text-decoration: none;
    display: block;
}

.l1-cat-card img {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5) saturate(0.8);
    transition: filter 0.45s, transform 0.45s;
}

.l1-cat-card:hover img {
    filter: brightness(0.65) saturate(1);
    transform: scale(1.04);
}

.l1-cat-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    gap: 4px;
}

.l1-cat-info .cat-name {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
    padding: 6px 18px;
    position: relative;
    z-index: 1;
}

.l1-cat-info .cat-name::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 2px;
    transform: skewX(-4deg);
}

.l1-categories.altin .l1-cat-info .cat-name::before {
    background: linear-gradient(92deg,
            rgba(201, 168, 76, 0) 0%,
            rgba(201, 168, 76, 0.75) 12%,
            rgba(180, 148, 56, 0.85) 35%,
            rgba(201, 168, 76, 0.88) 65%,
            rgba(201, 168, 76, 0.7) 88%,
            rgba(201, 168, 76, 0) 100%);
}

.l1-categories.pirlanta .l1-cat-info .cat-name::before {
    background: linear-gradient(92deg,
            rgba(130, 160, 190, 0) 0%,
            rgba(130, 160, 190, 0.7) 12%,
            rgba(120, 150, 180, 0.82) 35%,
            rgba(130, 160, 190, 0.85) 65%,
            rgba(130, 160, 190, 0.65) 88%,
            rgba(130, 160, 190, 0) 100%);
}

.l1-cat-info .cat-count {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
}

.l1-cat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 42%, rgba(255, 255, 255, 0.06) 50%, transparent 58%);
    transition: transform 0.6s;
    transform: translateX(-120%);
    pointer-events: none;
}

.l1-cat-card:hover::after {
    transform: translateX(30%);
}

.l1-featured {
    padding: 56px 0;
    border-top: 1px solid var(--border);
}

.l1-featured .section-title {
    margin-bottom: 32px;
}

/* === L2/L3 KATEGORİ SAYFASI === */
.page-header {
    padding: 32px 0 24px;
    border-bottom: 1px solid var(--border);
}

.page-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.page-header .result-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* L3 Filtre Bar */
.l3-bar {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.l3-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.l3-chip {
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
}

.l3-chip:hover {
    border-color: var(--gold-dark);
    color: var(--text-primary);
}

.l3-chip.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
    font-weight: 600;
}

.l3-chip .chip-count {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-left: 4px;
}

/* ─── L1 Kategori Kartları Vitrini ─── */
.l1-categories {
    padding: 48px 0 40px;
}

.l1-cat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.l1-cat-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    width: calc((100% - 56px) / 8);
    aspect-ratio: 5/3;
    text-decoration: none;
    display: block;
}

.l1-cat-card img {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5) saturate(0.8);
    transition: filter 0.45s, transform 0.45s;
}

.l1-cat-card:hover img {
    filter: brightness(0.65) saturate(1);
    transform: scale(1.04);
}

.l1-cat-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    gap: 4px;
}

.l1-cat-info .cat-name {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
    padding: 6px 18px;
    position: relative;
    z-index: 1;
}

.l1-cat-info .cat-name::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 2px;
    transform: skewX(-4deg);
    background: linear-gradient(92deg,
            rgba(201, 168, 76, 0) 0%,
            rgba(201, 168, 76, 0.75) 12%,
            rgba(180, 148, 56, 0.85) 35%,
            rgba(201, 168, 76, 0.88) 65%,
            rgba(201, 168, 76, 0.7) 88%,
            rgba(201, 168, 76, 0) 100%);
}

/* Shine effect */
.l1-cat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 42%, rgba(255, 255, 255, 0.06) 50%, transparent 58%);
    transition: transform 0.6s;
    transform: translateX(-120%);
    pointer-events: none;
}

.l1-cat-card:hover::after {
    transform: translateX(30%);
}

@media (max-width: 900px) {
    .l1-cat-card {
        width: calc((100% - 32px) / 5);
    }
}

@media (max-width: 540px) {
    .l1-cat-card {
        width: calc((100% - 16px) / 3);
    }

    .l1-cat-grid {
        gap: 6px;
    }
}

/* İçerik düzeni */
.cat-content {
    display: flex;
    gap: 32px;
    padding: 32px 0;
}

.filter-panel {
    width: 220px;
    flex-shrink: 0;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s;
}

.filter-option:hover {
    color: var(--text-primary);
}

.filter-option input[type="checkbox"] {
    accent-color: var(--gold);
    width: 14px;
    height: 14px;
}

.filter-option .f-count {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.products-area {
    flex: 1;
    min-width: 0;
}

/* Sıralama + Görünüm bar */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.toolbar-left {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.toolbar-right {
    display: flex;
    gap: 8px;
    align-items: center;
}

.sort-select {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.8rem;
    padding: 6px 12px;
    outline: none;
}

.sort-select:focus {
    border-color: var(--gold);
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 32px 0;
}

.page-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover {
    border-color: var(--gold-dark);
    color: var(--text-primary);
}

.page-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
    font-weight: 600;
}

.page-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* === ÜRÜN DETAY === */
.product-detail {
    display: flex;
    gap: 48px;
    padding: 40px 0 48px;
}

.pd-image-col {
    flex: 1;
    max-width: 520px;
    position: sticky;
    top: calc(var(--header-h) + 24px);
    align-self: flex-start;
}

.pd-image-main {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pd-image-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.4s;
}

.pd-image-main:hover img {
    transform: scale(1.05);
}

.pd-image-main .no-image {
    font-size: 1rem;
    color: var(--text-muted);
}

.pd-brand-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(13, 13, 13, 0.88);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    z-index: 2;
}

.pd-fav-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(13, 13, 13, 0.88);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
    z-index: 2;
}

.pd-fav-btn:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.pd-fav-btn.active {
    color: #e74c3c;
    border-color: #e74c3c;
}

.pd-fav-btn.active svg {
    fill: #e74c3c;
}

.pd-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pd-brand {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 6px;
}

.pd-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
}

.pd-code {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pd-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 0 20px;
}

.pd-price-section {
    margin-bottom: 24px;
}

.pd-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.pd-price-old {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 12px;
    font-family: var(--font-body);
}

.pd-price-discount {
    display: inline-block;
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    margin-left: 12px;
    vertical-align: middle;
}

.pd-price-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.pd-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.pd-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
}

.pd-qty button {
    width: 40px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.pd-qty button:hover {
    background: rgba(255, 255, 255, 0.05);
}

.pd-qty-val {
    width: 48px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    height: 44px;
    line-height: 44px;
}

.pd-add-cart {
    flex: 1;
    height: 44px;
    border: none;
    border-radius: 8px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pd-add-cart:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.pd-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.pd-cat-tag {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.72rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.pd-cat-tag:hover {
    border-color: var(--gold-dark);
    color: var(--gold);
}

.pd-trust {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.pd-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.pd-trust-item svg {
    flex-shrink: 0;
    stroke: var(--gold);
    opacity: 0.7;
}

.pd-attrs {
    margin-bottom: 20px;
}

.pd-attrs h3,
.pd-description h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.attr-table {
    width: 100%;
    border-collapse: collapse;
}

.attr-table tr {
    border-bottom: 1px solid var(--border);
}

.attr-table td {
    padding: 10px 0;
    font-size: 0.84rem;
}

.attr-table td:first-child {
    color: var(--text-muted);
    width: 140px;
}

.attr-table td:last-child {
    color: var(--text-primary);
}

.pd-description {
    margin-bottom: 20px;
}

.pd-description p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.pd-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.pd-cert-badge {
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--gold-dark);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.72rem;
    color: var(--gold-light);
}

.pd-source-link {
    padding-top: 16px;
}

.pd-source-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.25s;
}

.pd-source-link a:hover {
    border-color: var(--gold-dark);
    color: var(--gold);
}

.similar-section {
    padding: 56px 0;
    border-top: 1px solid var(--border);
}

.similar-section .section-title {
    margin-bottom: 32px;
}

/* === AUTH SAYFALARI === */
.auth-page {
    min-height: calc(100vh - var(--header-h) - 36px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    position: relative;
    overflow: hidden;
}

.auth-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1;
}

.auth-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-card-header .auth-icon {
    margin-bottom: 16px;
}

.auth-card-header .auth-icon svg {
    stroke: var(--gold);
    opacity: 0.7;
}

.auth-card-header h1 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.auth-card-header p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.auth-form-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 28px;
}

.auth-field {
    margin-bottom: 16px;
}

.auth-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.auth-field input {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.88rem;
    font-family: var(--font-body);
    transition: border-color 0.25s;
}

.auth-field input::placeholder {
    color: var(--text-muted);
}

.auth-field input:focus {
    outline: none;
    border-color: var(--gold-dark);
}

.auth-field .input-wrapper {
    position: relative;
}

.auth-field .toggle-pw {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.auth-field .toggle-pw:hover {
    color: var(--text-primary);
}

.auth-field .phone-group {
    display: flex;
    gap: 8px;
}

.auth-field .phone-code {
    width: 84px;
    flex-shrink: 0;
    text-align: center;
}

.auth-field .phone-num {
    flex: 1;
}

.auth-pw-hint {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px;
}

.auth-check-block {
    margin-bottom: 20px;
}

.auth-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.auth-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.auth-check a {
    color: var(--gold);
    transition: color 0.2s;
}

.auth-check a:hover {
    color: var(--gold-light);
}

.auth-link {
    font-size: 0.78rem;
    color: var(--gold);
    transition: color 0.2s;
    white-space: nowrap;
}

.auth-link:hover {
    color: var(--gold-light);
}

.auth-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 8px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.auth-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.auth-alt {
    text-align: center;
    margin-top: 28px;
}

.auth-alt p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.auth-alt-btn {
    display: block;
    width: 100%;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    line-height: 46px;
}

.auth-alt-btn:hover {
    border-color: var(--gold-dark);
    color: var(--gold);
}

.auth-error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.78rem;
    color: #e74c3c;
    margin-bottom: 16px;
    display: none;
}

.auth-error.show {
    display: block;
}

/* === SEPET SAYFASI === */
.cart-page {
    padding: 36px 0 64px;
    min-height: 60vh;
}

.cart-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 28px;
}

.cart-header h1 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.06em;
}

.cart-header .cart-count-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.cart-header .cart-count-label strong {
    color: var(--gold);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    transition: border-color 0.25s;
}

.cart-item:hover {
    border-color: rgba(201, 168, 76, 0.25);
}

.cart-item-img {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #1a1a1a;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-title a {
    color: inherit;
    transition: color 0.2s;
}

.cart-item-title a:hover {
    color: var(--gold);
}

.cart-item-brand {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.cart-item-qty button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: var(--text-secondary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.cart-item-qty button:first-child {
    border-radius: 6px 0 0 6px;
}

.cart-item-qty button:last-child {
    border-radius: 0 6px 6px 0;
}

.cart-item-qty button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.cart-item-qty span {
    width: 34px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-dark);
}

.cart-item-price {
    text-align: right;
    flex-shrink: 0;
    min-width: 100px;
}

.cart-item-price .line-total {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
}

.cart-item-price .unit-price {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.cart-item-remove {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.cart-item-remove:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.08);
}

.cart-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.cart-summary-row.total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-bottom: 0;
}

.cart-summary-row.total span:first-child {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cart-summary-row.total span:last-child {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.cart-summary-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.btn-checkout {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    border: none;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s;
}

.btn-checkout:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-clear-cart {
    width: 100%;
    height: 42px;
    border-radius: 8px;
    border: 1px solid rgba(231, 76, 60, 0.35);
    background: transparent;
    color: #e74c3c;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s;
}

.btn-clear-cart:hover {
    background: rgba(231, 76, 60, 0.1);
    border-color: #e74c3c;
}

.cart-empty {
    text-align: center;
    padding: 64px 24px;
}

.cart-empty svg {
    stroke: var(--text-muted);
    opacity: 0.3;
    margin-bottom: 20px;
}

.cart-empty h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.cart-empty p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.cart-empty a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.25s;
}

.cart-empty a:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* === ARAMA SAYFASI === */
.search-page {
    padding: 28px 0 64px;
    min-height: 60vh;
}

.search-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.search-info-left h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.search-info-left h1 .search-term {
    color: var(--gold);
}

.search-info-left .result-count {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.search-info-left .result-count strong {
    color: var(--gold);
}

.search-refine {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 4px 0 14px;
    transition: border-color 0.25s;
    max-width: 360px;
    flex: 1;
}

.search-refine:focus-within {
    border-color: var(--gold);
}

.search-refine svg {
    color: var(--text-muted);
    flex-shrink: 0;
    margin-right: 8px;
}

.search-refine input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    padding: 10px 0;
    outline: none;
    min-width: 120px;
}

.search-refine input::placeholder {
    color: var(--text-muted);
}

.search-refine-btn {
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    border-radius: 6px;
    padding: 7px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.search-refine-btn:hover {
    background: var(--gold-light);
}

.search-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-filters .filter-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-right: 4px;
}

.filter-chip {
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-chip:hover {
    border-color: var(--gold-dark);
    color: var(--text-primary);
}

.filter-chip.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
    font-weight: 700;
}

.filter-chip .chip-count {
    margin-left: 4px;
    opacity: 0.7;
    font-size: 0.65rem;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.load-more-wrap {
    text-align: center;
    margin-top: 36px;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-load-more:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.load-more-info {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.search-loading {
    text-align: center;
    padding: 64px 24px;
}

.search-loading .spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: cevheranSpin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes cevheranSpin {
    to {
        transform: rotate(360deg);
    }
}

.search-loading p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.search-empty {
    text-align: center;
    padding: 64px 24px;
}

.search-empty svg {
    stroke: var(--text-muted);
    opacity: 0.25;
    margin-bottom: 20px;
}

.search-empty h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.search-empty p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    line-height: 1.6;
}

.search-empty .suggestions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.search-empty .suggestions a {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 500;
    transition: all 0.2s;
}

.search-empty .suggestions a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* === FOOTER === */
.cevheran-body .footer {
    margin-top: 48px;
    background: #1C1C1C;
    position: static;
    border-top: none;
    padding-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 52px 0 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-brand .logo {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--gold);
}

.footer-desc {
    font-size: 0.78rem;
    color: #999;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: all 0.25s;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.footer-address {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 4px;
}

.footer-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ddd;
    letter-spacing: 0.02em;
}

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.04em;
    color: #eee;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #333;
}

.footer-col a {
    font-size: 0.78rem;
    color: #999;
    transition: color 0.2s;
    padding: 2px 0;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

.footer-cat-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-cat-title {
    font-weight: 600;
    color: #ccc !important;
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.footer-app-links {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    background: #151515;
    border-top: 1px solid #2a2a2a;
}

.footer-app-links a {
    display: inline-block;
    transition: opacity .2s;
}

.footer-app-links a:hover {
    opacity: .8;
}

.footer-app-links img {
    height: 40px;
    width: auto;
}

.footer-bottom {
    background: #151515;
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: #666;
}

.footer-cards {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-cards span {
    font-size: 0.65rem;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border: 1px solid #333;
    border-radius: 3px;
    text-transform: uppercase;
}

/* === LOADING OVERLAY === */
.card-body.loading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
    border-radius: 0.5rem;
}

.card-body.loading::after {
    content: "⏳";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    z-index: 6;
    text-align: center;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .search-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .header-inner {
        gap: 12px;
    }

    .header-search {
        max-width: 320px;
    }

    .icon-label {
        display: none;
    }

    .trust-bar-inner {
        gap: 24px;
        justify-content: flex-start;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .cat-card {
        width: calc((100% - 24px) / 4);
    }

    .l1-cat-card {
        width: calc((100% - 24px) / 4);
    }

    .l1-hero {
        min-height: 260px;
    }

    .l1-hero-title {
        font-size: 2rem;
    }

    .pd-trust {
        flex-wrap: wrap;
        gap: 12px;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .search-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-search {
        max-width: none;
        flex: 1;
    }

    .search-btn {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero {
        padding: 56px 24px;
    }

    .hero-cta {
        padding: 12px 36px;
        font-size: 0.82rem;
    }

    .section {
        padding: 40px 0;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .split-hero {
        flex-direction: column;
        min-height: auto;
    }

    .split-hero-half {
        padding: 48px 24px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .split-title {
        font-size: 1.6rem;
    }

    .cat-content {
        flex-direction: column;
        gap: 16px;
    }

    .filter-panel {
        width: 100%;
        display: flex;
        gap: 16px;
        overflow-x: auto;
    }

    .filter-group {
        min-width: 160px;
        margin-bottom: 0;
    }

    .page-header h1 {
        font-size: 1.3rem;
    }

    .product-detail {
        flex-direction: column;
        gap: 24px;
        padding: 24px 0 32px;
    }

    .pd-image-col {
        max-width: 100%;
        position: static;
    }

    .pd-title {
        font-size: 1.3rem;
    }

    .pd-price {
        font-size: 1.5rem;
    }

    .pd-actions {
        flex-direction: column;
    }

    .pd-add-cart {
        width: 100%;
    }

    .search-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-refine {
        max-width: 100%;
    }

    .search-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .cart-item {
        flex-wrap: wrap;
        gap: 12px;
    }

    .cart-item-img {
        width: 56px;
        height: 56px;
    }

    .cart-item-info {
        flex: 1;
        min-width: calc(100% - 80px);
    }

    .cart-item-qty {
        margin-left: auto;
    }

    .cart-item-price {
        text-align: left;
        min-width: auto;
    }
}

@media (max-width: 540px) {
    .cat-card {
        width: calc((100% - 16px) / 3);
    }

    .cat-grid {
        gap: 6px;
    }

    .l1-cat-card {
        width: calc((100% - 16px) / 3);
    }

    .l1-cat-grid {
        gap: 6px;
    }

    .l1-hero {
        min-height: 220px;
    }

    .l1-hero-title {
        font-size: 1.6rem;
    }

    .l1-hero-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header-icons {
        gap: 14px;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 0.12em;
    }

    .hero-sub {
        font-size: 0.65rem;
    }

    .catbar-item {
        padding: 10px 12px;
    }

    .catbar-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .catbar-name {
        font-size: 0.6rem;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .auth-form-box {
        padding: 24px 20px;
    }

    .auth-card-header h1 {
        font-size: 1.5rem;
    }

    .search-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .search-info-left h1 {
        font-size: 1.2rem;
    }
}

/* ═══════════════════════════════════════════════
   PRODUCT DETAIL (popup / _SingleProduct)
   ═══════════════════════════════════════════════ */
.product-detail {
    display: flex;
    gap: 48px;
    padding: 12px 0 16px;
}

.pd-image-col {
    flex: 1;
    max-width: 520px;
    align-self: flex-start;
}

.pd-image-main {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pd-image-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.4s;
}

.pd-image-main:hover img {
    transform: scale(1.05);
}

.pd-brand-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.pd-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pd-brand {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 6px;
}

.pd-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
}

.pd-code {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: block;
}

.pd-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 0 20px;
}

.pd-price-section {
    margin-bottom: 24px;
}

.pd-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.pd-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.pd-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
}

.pd-qty button {
    width: 40px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
}

.pd-qty button:hover {
    background: rgba(255, 255, 255, 0.05);
}

.pd-qty-val {
    width: 48px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    height: 44px;
    line-height: 44px;
}

.pd-add-cart {
    flex: 1;
    height: 44px;
    border: none;
    border-radius: 8px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, box-shadow 0.2s;
}

.pd-add-cart:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.pd-add-cart.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.pd-description h3,
.pd-attrs h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pd-description p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.pd-trust {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.pd-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.pd-trust-item svg {
    flex-shrink: 0;
    stroke: var(--gold);
    opacity: 0.7;
}

/* ── Product Detail: Option Groups (combo columns + cesni) ── */
.pd-option-group {
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-card);
}

.pd-option-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-dark);
}

.pd-option-head-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
}

.pd-option-required {
    font-size: 0.68rem;
    font-weight: 700;
    color: #e74c3c;
    margin-left: auto;
}

.pd-option-optional {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-left: auto;
    font-style: italic;
}

.pd-option-subtitle {
    padding: 4px 14px;
    font-size: 0.7rem;
    color: var(--text-muted);
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
}

.pd-option-list {
    padding: 4px 0;
}

.pd-option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    cursor: pointer;
    font-size: 0.84rem;
    color: var(--text-secondary);
    transition: background 0.15s;
}

.pd-option-item:hover {
    background: rgba(201, 168, 76, 0.04);
}

.pd-option-item input[type="checkbox"]:checked+span {
    color: var(--text-primary);
    font-weight: 600;
}

.pd-option-price {
    margin-left: auto;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.82rem;
    white-space: nowrap;
}

.pd-option-fixed {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.84rem;
    color: var(--text-primary);
    font-weight: 500;
}

.pd-option-fixed svg {
    flex-shrink: 0;
}

/* Product detail popup container override */
.sng-prc-root {
    background: var(--bg-dark);
    border-radius: 16px;
    border: 1px solid var(--border);
}

/* Product detail responsive */
@media (max-width: 768px) {
    .product-detail {
        flex-direction: column;
        gap: 24px;
        padding: 8px 0 16px;
    }

    .pd-image-col {
        max-width: 100%;
    }

    .pd-title {
        font-size: 1.3rem;
    }

    .pd-price {
        font-size: 1.5rem;
    }
}

/* ===== Pagination ===== */
.pagination-wrap {
    padding: 32px 0 48px;
    text-align: center;
}

.pagination-info {
    color: var(--text-muted);
    font-size: .85rem;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.pagination-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all .2s ease;
    cursor: pointer;
}

.page-btn:hover:not(.active):not(.disabled) {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(185, 157, 107, .08);
}

.page-btn.active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    cursor: default;
}

.page-btn.disabled {
    opacity: .35;
    cursor: default;
    pointer-events: none;
}

.page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 40px;
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 2px;
}

@media (max-width: 480px) {
    .page-btn {
        min-width: 36px;
        height: 36px;
        font-size: .82rem;
    }

    .pagination-wrap {
        padding: 24px 0 36px;
    }
}