/* Souvra — Resmi Karanlık Tema */
:root {
    --bg-base: #0a0e14;
    --bg-elevated: #111820;
    --bg-surface: #161d28;
    --bg-surface-hover: #1c2533;
    --border: #243040;
    --border-light: #2e3d52;
    --text-primary: #e8ecf1;
    --text-secondary: #8b95a5;
    --text-muted: #5c6778;
    --accent: #3b6fd9;
    --accent-hover: #2f5fc4;
    --accent-soft: rgba(59, 111, 217, 0.12);
    --gold: #c4a35a;
    --gold-soft: rgba(196, 163, 90, 0.15);
    --success: #2d9d6e;
    --danger: #c94c4c;
    --danger-soft: rgba(201, 76, 76, 0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --header-height: 72px;
    --topbar-height: 0px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.2s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Üst Bilgi Çubuğu ── */
.top-bar {
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-bar-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.top-bar-inner span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar-inner i {
    color: var(--gold);
    font-size: 0.7rem;
}

.site-header {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    z-index: 1000;
}

/* ── Navigasyon ── */
.navbar {
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    gap: 0;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.12em;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.nav-links > a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color var(--transition);
    position: relative;
}

.nav-links > a:hover {
    color: var(--text-primary);
}

.nav-links > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-links > a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    font-size: 1.25rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
}

/* Arama */
.search-bar {
    display: flex;
    align-items: center;
    position: relative;
}

.search-bar input {
    padding: 0.55rem 1rem 0.55rem 2.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    outline: none;
    background: var(--bg-surface);
    color: var(--text-primary);
    width: 200px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.search-bar input::placeholder {
    color: var(--text-muted);
}

.search-bar input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.search-bar button {
    position: absolute;
    left: 0.65rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    display: flex;
    pointer-events: none;
}

.search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    max-height: 240px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.search-results div {
    padding: 0.65rem 1rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.search-results div:last-child {
    border-bottom: none;
}

.search-results div:hover {
    background: var(--bg-surface-hover);
    color: var(--text-primary);
}

/* Sepet */
.cart-icon {
    position: relative;
    color: var(--text-secondary);
    font-size: 1.15rem;
    transition: color var(--transition);
    cursor: pointer;
    padding: 0.5rem;
}

.cart-icon:hover {
    color: var(--text-primary);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: #fff;
    padding: 1px 6px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    min-width: 18px;
    text-align: center;
}

.cart-preview {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 320px;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    display: none;
    flex-direction: column;
    max-height: 400px;
    overflow-y: auto;
}

.cart-preview.show {
    display: flex;
}

.cart-preview-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.cart-preview-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: var(--bg-base);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.cart-preview-item-details {
    flex: 1;
}

.cart-preview-item-details p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.cart-preview-item-details .price {
    color: var(--gold);
    font-weight: 600;
}

.cart-preview-total {
    padding: 12px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
}

.cart-preview-footer {
    padding: 12px 16px;
    text-align: center;
}

.cart-preview-footer a {
    display: block;
    background: var(--accent);
    color: #fff;
    padding: 0.65rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background var(--transition);
}

.cart-preview-footer a:hover {
    background: var(--accent-hover);
}

/* Dil Seçici */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: var(--bg-surface);
    color: var(--text-secondary);
    padding: 0.45rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: border-color var(--transition), color var(--transition);
}

.lang-btn:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 1001;
    min-width: 150px;
    overflow: hidden;
}

.lang-dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0.85rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: background var(--transition);
}

.lang-dropdown-content a:hover {
    background: var(--bg-surface-hover);
    color: var(--text-primary);
}

.lang-dropdown-content img {
    width: 18px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
}

.language-dropdown:hover .lang-dropdown-content {
    display: block;
}

/* ── Ana İçerik Ofseti ── */
.page-offset {
    padding-top: calc(var(--topbar-height) + var(--header-height));
}

/* ── Hero ── */
.hero {
    margin-top: calc(var(--topbar-height) + var(--header-height) + 1.5rem);
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    height: 440px;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.hero-carousel {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.hero-item {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.hero-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 14, 20, 0.95) 0%, rgba(10, 14, 20, 0.4) 60%, transparent 100%);
    padding: 2.5rem;
    color: var(--text-primary);
}

.hero-overlay h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero-overlay p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.hero-overlay a {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.7rem 1.5rem;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    transition: background var(--transition);
}

.hero-overlay a:hover {
    background: var(--accent-hover);
}

.hero-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.hero-btn {
    background: rgba(10, 14, 20, 0.75);
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 0;
    cursor: pointer;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
    pointer-events: all;
}

.hero-btn:hover {
    background: var(--bg-surface);
    border-color: var(--border-light);
}

/* Güven Rozetleri */
.trust-badges {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.trust-badge {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: border-color var(--transition);
}

.trust-badge:hover {
    border-color: var(--border-light);
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}

.trust-badge h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.trust-badge p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── Bölüm Başlıkları ── */
.products-section {
    padding: 3rem 5%;
    background: transparent;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ── Ürün Kartları ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    justify-content: space-between;
}

.product-card:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-base);
    border-bottom: 1px solid var(--border);
}

.product-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.product-info {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    display: inline-flex;
    align-items: baseline;
    gap: 0.1rem;
    font-variant-numeric: tabular-nums;
}

.product-price .currency-symbol,
.product-price-detail .currency-symbol {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
}

.product-price .price-amount,
.product-price-detail .price-amount {
    font-variant-numeric: tabular-nums;
}

.product-price small {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.add-to-cart {
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem;
    padding: 0.7rem;
    background: var(--accent);
    color: #fff;
    border: none;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.add-to-cart:hover {
    background: var(--accent-hover);
}

.add-to-cart:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
}

.discount-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--danger);
    color: #fff;
    padding: 0.3rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    z-index: 10;
}

.more-button {
    display: block;
    margin: 2.5rem auto 0;
    text-align: center;
}

.more-button .btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.more-button .btn:hover {
    background: var(--accent);
    color: #fff;
}

.stock-message {
    color: var(--danger);
    font-size: 0.8rem;
    margin: 0 1rem 1rem;
    display: block;
}

/* ── Hesap Sayfası ── */
.account-section {
    padding: 2rem 5% 3rem;
    margin-top: calc(var(--topbar-height) + var(--header-height));
}

.account-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.auth-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.auth-form {
    flex: 1;
    padding: 2rem;
    background: var(--bg-base);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.auth-form h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    outline: none;
    background: var(--bg-surface);
    color: var(--text-primary);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--accent);
    color: #fff;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.btn:hover {
    background: var(--accent-hover);
}

.tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
    gap: 0;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.tab.active,
.tab:hover {
    color: var(--text-primary);
    border-bottom-color: var(--accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.order-card,
.message-item,
.notification-item,
.comment-card {
    background: var(--bg-base);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.order-card-enhanced {
    padding: 1.35rem;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.order-card-title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.order-id {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.order-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.order-date i {
    margin-right: 0.25rem;
}

.order-status-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.order-status-pending_crypto,
.order-status-pending {
    background: rgba(212, 160, 23, 0.18);
    color: #d4a017;
    border: 1px solid rgba(212, 160, 23, 0.35);
}

.order-status-processing,
.order-status-shipped {
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(59, 111, 217, 0.35);
}

.order-status-completed,
.order-status-delivered {
    background: rgba(45, 157, 110, 0.15);
    color: var(--success);
    border: 1px solid rgba(45, 157, 110, 0.35);
}

.order-status-cancelled,
.order-status-failed {
    background: var(--danger-soft);
    color: var(--danger);
    border: 1px solid rgba(201, 76, 76, 0.35);
}

.order-section-label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.order-products-preview {
    margin-bottom: 1rem;
}

.order-product-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}

.order-product-item:last-child {
    border-bottom: none;
}

.order-product-thumb {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.order-product-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    color: var(--text-muted);
    font-size: 1rem;
}

.order-product-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.order-product-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.order-card-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.order-summary-chip {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem;
    min-width: 120px;
}

.chip-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.chip-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.chip-total {
    color: var(--gold);
    font-size: 1rem;
}

.chip-crypto {
    font-family: 'Consolas', 'Monaco', monospace;
    color: var(--accent);
}

.order-crypto-notice {
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

.order-crypto-notice i {
    color: #d4a017;
    margin-right: 0.35rem;
}

.order-crypto-detail {
    margin-top: 0.5rem;
    word-break: break-all;
}

.order-crypto-detail .mono {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.78rem;
    color: var(--accent);
}

.order-shipping-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding: 0.6rem 0.85rem;
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
}

.order-shipping-info i {
    color: var(--accent);
    margin-right: 0.35rem;
}

.order-track-link {
    color: var(--accent);
    margin-left: 0.5rem;
    text-decoration: none;
    font-weight: 500;
}

.order-track-link:hover {
    text-decoration: underline;
}

.empty-orders {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
}

.order-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.order-details-table th,
.order-details-table td {
    padding: 0.55rem 0.5rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
    color: var(--text-secondary);
}

.order-details-table th {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.order-details-totals {
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
}

.order-details-totals p {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.order-details-grand-total {
    font-weight: 700;
    font-size: 0.95rem !important;
    color: var(--text-primary) !important;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.order-delivery-address {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.order-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.order-card p,
.message-item p,
.notification-item p,
.comment-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.message-item.unread,
.notification-item.unread {
    border-left: 3px solid var(--accent);
    background: var(--accent-soft);
}

.btn-order-details {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 0.4rem 1rem !important;
    border: none !important;
    border-radius: var(--radius-sm) !important;
    cursor: pointer;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background var(--transition);
}

.btn-order-details:hover {
    background: var(--accent-hover) !important;
}

.order-details {
    margin-top: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.message-list,
.notification-list {
    list-style: none;
}

.message-content,
.notification-content {
    margin-bottom: 0.5rem;
}

.message-actions,
.notification-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.message-actions a,
.notification-actions a {
    font-size: 0.8rem;
    color: var(--accent);
    text-decoration: none;
}

.message-actions a:hover,
.notification-actions a:hover {
    text-decoration: underline;
}

.error-message {
    color: #fff;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    background: var(--danger-soft);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--danger);
}

.success-message {
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    background: rgba(45, 157, 110, 0.12);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--success);
}

.success-tick {
    display: none;
    position: fixed;
    top: calc(var(--topbar-height) + var(--header-height) + 12px);
    right: 20px;
    background: var(--success);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    align-items: center;
    gap: 0.5rem;
    z-index: 2000;
    box-shadow: var(--shadow-md);
    animation: slideIn 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ── İletişim & Hakkımızda ── */
.contact-section,
.about-section {
    padding: 2rem 5% 3rem;
    margin-top: calc(var(--topbar-height) + var(--header-height));
}

.contact-content,
.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: var(--bg-base);
    color: var(--text-primary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-info {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.contact-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.about-content p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-content .section-title {
    text-align: left;
    margin-top: 2rem;
}

.about-content .section-title:first-child {
    margin-top: 0;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.about-trust-item {
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
}

.about-trust-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.65rem;
    display: block;
}

.about-trust-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.about-trust-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── Ürün Listeleme ── */
.container {
    display: flex;
    margin-top: calc(var(--topbar-height) + var(--header-height));
    padding: 2rem 5%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.container .products-section {
    flex: 1;
    padding: 2rem;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.sort-bar {
    margin-bottom: 1.5rem;
    text-align: right;
}

.sort-bar select {
    padding: 0.6rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    background: var(--bg-base);
    color: var(--text-primary);
    cursor: pointer;
}

/* ── Ürün Detay ── */
.product-detail-section {
    padding: 2rem;
    margin: calc(var(--topbar-height) + var(--header-height) + 1.5rem) 5% 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 2.5rem;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    align-items: flex-start;
}

.product-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 450px;
}

.main-image-container {
    width: 100%;
    max-width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-base);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    overflow: hidden;
}

.main-image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.thumbnail-gallery {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail-container {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-base);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color var(--transition);
}

.thumbnail-container:hover,
.thumbnail-container.active {
    border-color: var(--accent);
}

.thumbnail {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info-detail {
    flex: 1;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-title-detail {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.product-price-detail {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-variant-numeric: tabular-nums;
}

.product-price-detail del {
    color: var(--text-muted);
    margin-right: 0.5rem;
    font-weight: 400;
    font-size: 1.1rem;
}

.product-description-detail {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.comments-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.comment-form {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comment-form input,
.comment-form textarea,
.comment-form select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: var(--bg-base);
    color: var(--text-primary);
}

.comment-form button {
    width: 100%;
    padding: 0.75rem;
    background: var(--accent);
    color: #fff;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.comment-form button:hover {
    background: var(--accent-hover);
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comment {
    background: var(--bg-base);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.comment-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.comment-rating {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.comment-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Sepet ── */
.cart-section {
    padding: 2rem 5% 3rem;
    margin-top: calc(var(--topbar-height) + var(--header-height));
}

.cart-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
}

.cart-items {
    flex: 1;
    min-width: 300px;
}

.cart-item {
    display: flex;
    align-items: center;
    background: var(--bg-base);
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.cart-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    margin-right: 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cart-item-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 0.35rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cart-item-quantity button {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color var(--transition);
}

.cart-item-quantity button:hover {
    border-color: var(--accent);
}

.cart-item-quantity input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.25rem;
    background: var(--bg-surface);
    color: var(--text-primary);
}

.cart-item-remove {
    background: transparent;
    color: var(--danger);
    border: 1px solid var(--danger);
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    margin-left: 1rem;
    font-size: 0.8rem;
    transition: background var(--transition), color var(--transition);
}

.cart-item-remove:hover {
    background: var(--danger);
    color: #fff;
}

.cart-summary {
    width: 340px;
    background: var(--bg-base);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    height: fit-content;
}

.cart-summary h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.summary-row.total {
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    color: var(--text-primary);
}

.discount-code {
    display: flex;
    gap: 0.5rem;
    margin: 1.25rem 0;
}

.discount-code input {
    flex: 1;
    padding: 0.55rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    background: var(--bg-surface);
    color: var(--text-primary);
}

.discount-code button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85rem;
    transition: background var(--transition);
}

.discount-code button:hover {
    background: var(--accent-hover);
}

.payment-methods {
    margin: 1.25rem 0;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.payment-methods h4 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
}

.method-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.method-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.method-option input {
    margin: 0;
    accent-color: var(--accent);
}

.method-option label {
    font-size: 0.875rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.method-icons {
    display: flex;
    gap: 0.5rem;
    margin-left: 1.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.method-icons i,
.method-icons span {
    font-size: 1.4rem;
    color: var(--text-muted);
}

.coin-icon-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
}

.coin-icon-xs {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.75;
    transition: opacity var(--transition);
}

.coin-icon-xs:hover {
    opacity: 1;
}

.coin-icon-inline {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 6px;
}

.coin-icon-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.crypto-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0;
}

.crypto-btn {
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.crypto-btn img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
}

.crypto-btn:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.crypto-btn.selected {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--text-primary);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.cart-actions button {
    width: 100%;
    padding: 0.75rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background var(--transition);
}

.cart-actions button:hover {
    background: var(--accent-hover);
}

.cart-actions .continue-shopping {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.cart-actions .continue-shopping:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
    background: var(--bg-surface);
}

.empty-cart {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 2rem;
}

/* ── Ödeme ── */
.payment-section {
    padding: 2rem 5% 3rem;
    margin-top: calc(var(--topbar-height) + var(--header-height));
}

.payment-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.address-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    grid-column: span 2;
}

.submit-button {
    grid-column: span 2;
    width: 100%;
    padding: 0.85rem;
    background: var(--accent);
    color: #fff;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
    margin-top: 0.5rem;
}

.submit-button:hover {
    background: var(--accent-hover);
}

.summary {
    margin-top: 2rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-base);
}

.summary h2 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.75rem;
    color: var(--text-primary);
}

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

.summary table td {
    padding: 0.65rem 0.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.summary table tr.total td {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    border-bottom: none;
}

.summary .discount-info {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.info-message {
    background: var(--accent-soft);
    border-left: 3px solid var(--accent);
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ── Modaller ── */
.crypto-payment-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 20, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1rem;
    overflow-y: auto;
    backdrop-filter: blur(6px);
}

.crypto-payment-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    width: 100%;
    max-width: 520px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    position: relative;
    margin: auto;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
}

.payment-modal-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding-right: 2rem;
}

.payment-coin-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-light);
    background: var(--bg-elevated);
    flex-shrink: 0;
    display: none;
}

.payment-modal-header-text h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.payment-modal-header-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.payment-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: left;
}

.payment-modal-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.payment-amount-box {
    width: 100%;
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
}

.payment-amount-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.payment-amount-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.payment-highlight {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Consolas', 'Monaco', monospace;
    line-height: 1.2;
    word-break: break-all;
}

.payment-currency-tag {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

.payment-tl-sub {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.payment-modal-details {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.detail-item {
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.7rem 0.85rem;
}

.detail-label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.detail-value {
    font-size: 0.82rem;
    color: var(--text-secondary);
    word-break: break-all;
    line-height: 1.4;
}

.payment-address-copy {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.78rem;
    color: var(--accent);
}

.detail-item-address .copy-btn {
    margin-top: 0.5rem;
}

.copy-btn {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--accent-soft);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.copy-btn:hover {
    background: var(--accent);
    color: #fff;
}

.payment-notice {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
    text-align: left;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.status-waiting { background: #b8860b; color: #fff; }
.status-completed { background: var(--success); color: #fff; }
.status-cancelled { background: var(--danger); color: #fff; }

.crypto-payment-card .close-modal {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: all var(--transition);
    line-height: 1;
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.crypto-payment-card .close-modal:hover {
    color: var(--text-primary);
    border-color: var(--border-light);
}

.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 20, 0.85);
    z-index: 2001;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
}

.modal-content .close-modal {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color var(--transition);
}

.modal-content .close-modal:hover {
    color: var(--text-primary);
}

.modal-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
}

.modal-content .warning-text {
    background: var(--danger-soft);
    border-left: 3px solid var(--danger);
    padding: 0.85rem;
    margin: 1rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
}

.modal-content .shopier-link {
    text-align: center;
    margin: 1rem 0;
}

.modal-content .shopier-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.modal-content .shopier-link a:hover {
    text-decoration: underline;
}

.modal-content input,
.modal-content textarea {
    background: var(--bg-base);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.7rem;
    border-radius: var(--radius-sm);
    width: 100%;
}

.modal-content button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: background var(--transition);
}

.modal-content button:hover {
    background: var(--accent-hover);
}

/* ── Footer ── */
.footer {
    background: var(--bg-elevated);
    color: var(--text-secondary);
    padding: 3rem 5% 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-section p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

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

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-muted);
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), color var(--transition);
}

.social-icons a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-bottom {
    max-width: 1400px;
    margin: 2.5rem auto 0;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom .payment-badges {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-bottom .payment-badges i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .payment-modal-body {
        grid-template-columns: 1fr;
    }

    .payment-highlight {
        font-size: 1.25rem;
    }

    .crypto-payment-card {
        padding: 1.25rem;
    }
}

/* Sipariş durumu sayfası */
.order-status-page {
    font-family: var(--font);
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-base);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.order-status-page .message {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.order-status-page .message i {
    margin-right: 0.5rem;
}

.order-status-page a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.order-status-page a:hover {
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .navbar { padding: 0 3%; }
    .nav-links { gap: 1rem; }
    .hero-overlay h3 { font-size: 1.4rem; }
    .hero-overlay p { font-size: 0.9rem; }
}

@media (max-width: 768px) {
    .top-bar-inner {
        gap: 1rem;
        justify-content: space-between;
    }
    .top-bar-inner span:nth-child(3) {
        display: none;
    }
    .navbar {
        padding: 0 4%;
        height: 60px;
    }
    :root {
        --header-height: 60px;
    }
    .logo-text { font-size: 1.15rem; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--bg-elevated);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        align-items: stretch;
        gap: 0;
        box-shadow: var(--shadow-md);
    }
    .nav-links.active { display: flex; }
    .nav-links > a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-actions {
        flex-direction: column;
        width: 100%;
        padding-top: 0.75rem;
        gap: 0.75rem;
    }
    .search-bar { width: 100%; }
    .search-bar input { width: 100%; }
    .hamburger { display: block; }
    .hero {
        height: 280px;
        margin: calc(var(--topbar-height) + var(--header-height) + 1rem) 4% 0;
        border-radius: var(--radius-md);
    }
    .hero-overlay { padding: 1.25rem; }
    .hero-overlay h3 { font-size: 1.15rem; }
    .hero-overlay p { font-size: 0.8rem; }
    .hero-overlay a { padding: 0.5rem 1rem; font-size: 0.8rem; }
    .hero-btn { width: 36px; height: 36px; font-size: 0.85rem; }
    .trust-badges {
        grid-template-columns: 1fr 1fr;
        padding: 0 4%;
        gap: 0.75rem;
    }
    .trust-badge { padding: 1rem 0.75rem; }
    .section-title { font-size: 1.25rem; }
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
    .product-card { min-height: 320px; }
    .product-image { height: 160px; }
    .container {
        flex-direction: column;
        padding: 1rem 4%;
        margin-top: calc(var(--topbar-height) + var(--header-height));
    }
    .product-detail-section {
        flex-direction: column;
        margin: calc(var(--topbar-height) + var(--header-height) + 1rem) 4% 1rem;
        padding: 1.25rem;
    }
    .main-image-container {
        max-width: 100%;
        height: 280px;
    }
    .product-title-detail { font-size: 1.3rem; text-align: center; }
    .product-price-detail { text-align: center; }
    .cart-content { flex-direction: column; padding: 1.25rem; }
    .cart-summary { width: 100%; }
    .cart-item { flex-wrap: wrap; }
    .cart-item img { width: 70px; height: 70px; }
    .auth-container { flex-direction: column; }
    .tabs { flex-wrap: wrap; }
    .tab { flex: 1 1 50%; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width,
    .submit-button,
    .address-group { grid-column: span 1; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cart-preview { width: 280px; right: -40px; }
    .lang-dropdown-content { min-width: 130px; }
}

@media (max-width: 480px) {
    .top-bar-inner span:nth-child(2) { display: none; }
    .trust-badges { grid-template-columns: 1fr; }
    .hero { height: 220px; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .product-card { min-height: 280px; }
    .product-image { height: 130px; }
    .cart-preview { width: 260px; }
}

/* ── Destek Sohbeti ── */
.support-chat {
    display: flex;
    flex-direction: column;
    height: 520px;
    max-height: 70vh;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.support-chat-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

.support-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.support-chat-header strong {
    display: block;
    font-size: 0.95rem;
}

.support-chat-header span {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.support-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    background: #0d0f12;
}

.support-chat-empty {
    margin: auto;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}

.support-chat-bubble {
    max-width: 78%;
    padding: 0.65rem 0.85rem;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.45;
}

.support-chat-bubble.incoming {
    align-self: flex-start;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
}

.support-chat-bubble.outgoing {
    align-self: flex-end;
    background: #1a3a2a;
    border: 1px solid #2d5a3d;
    border-bottom-right-radius: 4px;
}

.support-chat-text { word-break: break-word; }

.support-chat-image {
    max-width: 220px;
    max-height: 180px;
    border-radius: 8px;
    display: block;
    margin-bottom: 0.35rem;
}

.support-chat-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.support-chat-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-top: 1px solid var(--border);
    background: var(--bg-surface);
}

.support-chat-input input[type="text"] {
    flex: 1;
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.65rem 1rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.support-chat-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
}

.support-chat-attach {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
}

.support-chat-attach input { display: none; }

.support-chat-preview {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
}

.support-chat-preview img {
    max-height: 60px;
    border-radius: 6px;
}

.support-chat-preview button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

/* ── Etkileşim & Animasyonlar ── */
.nav-admin-link {
    color: var(--gold) !important;
    background: var(--gold-soft);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(196, 163, 90, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-admin-link::after {
    display: none !important;
}

.nav-admin-link:hover {
    color: #e8d5a0 !important;
    background: rgba(196, 163, 90, 0.22);
    border-color: rgba(196, 163, 90, 0.45);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(196, 163, 90, 0.15);
}

.nav-links > a.nav-active {
    color: var(--text-primary);
}

.nav-links > a.nav-active::after {
    width: 100%;
}

.btn-interactive {
    position: relative;
    overflow: hidden;
}

.btn-interactive:active {
    transform: scale(0.97);
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    animation: rippleAnim 0.55s ease-out forwards;
}

@keyframes rippleAnim {
    from { transform: scale(0); opacity: 0.6; }
    to { transform: scale(2.5); opacity: 0; }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease var(--reveal-delay, 0s), transform 0.55s ease var(--reveal-delay, 0s);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card {
    will-change: transform;
}

.add-to-cart {
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.add-to-cart:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(59, 111, 217, 0.35);
}

.cart-icon.cart-bounce {
    animation: cartBounce 0.45s ease;
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    30% { transform: scale(1.18); }
    60% { transform: scale(0.95); }
}

.hero-btn {
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.hero-btn:active {
    transform: scale(0.94);
}

.success-tick {
    animation: successPop 0.35s ease;
}

@keyframes successPop {
    0% { transform: translateX(-50%) scale(0.8); opacity: 0; }
    60% { transform: translateX(-50%) scale(1.05); opacity: 1; }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn-interactive:active,
    .hero-btn:active {
        transform: none;
    }
}

/* ── Toast Bildirimleri ── */
.toast-container {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 360px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    font-size: 0.88rem;
}

.toast.show { transform: translateX(0); opacity: 1; }
.toast-success { border-left: 3px solid var(--success); }
.toast-error { border-left: 3px solid var(--danger); }
.toast-info { border-left: 3px solid var(--accent); }
.toast-warning { border-left: 3px solid var(--gold); }
.toast-close { margin-left: auto; background: none; border: none; color: var(--text-muted); cursor: pointer; }

/* ── Skeleton Loading ── */
.product-grid.is-loading .product-card { pointer-events: none; }
.product-grid.is-loading .product-card > * { visibility: hidden; }
.product-grid.is-loading .product-card::before {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg-surface) 25%, var(--bg-surface-hover) 50%, var(--bg-surface) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.2s infinite;
    border-radius: var(--radius-md);
}
@keyframes skeletonShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── Kupon ── */
.coupon-row { display: flex; gap: 0.5rem; margin: 0.75rem 0; }
.coupon-row input { flex: 1; padding: 0.55rem 0.75rem; background: var(--bg-base); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-primary); }
.btn-coupon { padding: 0.55rem 1rem; background: var(--gold-soft); border: 1px solid rgba(196,163,90,0.35); color: var(--gold); border-radius: var(--radius-sm); cursor: pointer; white-space: nowrap; }
.coupon-message { font-size: 0.82rem; margin-bottom: 0.5rem; }
.coupon-message.success { color: var(--success); }
.coupon-message.error { color: var(--danger); }

/* ── Sipariş Timeline ── */
.order-tracking-code { font-size: 0.85rem; color: var(--gold); margin: 0.5rem 0 0.75rem; }
.order-timeline {
    display: flex; align-items: center; gap: 0;
    margin: 0.75rem 0 1rem; padding: 0.75rem;
    background: var(--bg-base); border-radius: var(--radius-sm); overflow-x: auto;
}
.order-timeline.cancelled { color: var(--danger); justify-content: center; }
.timeline-step { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; min-width: 72px; }
.timeline-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--border); border: 2px solid var(--border-light); }
.timeline-step.done .timeline-dot { background: var(--accent); border-color: var(--accent); }
.timeline-step.current .timeline-dot { box-shadow: 0 0 0 4px var(--accent-soft); }
.timeline-label { font-size: 0.68rem; color: var(--text-muted); text-align: center; }
.timeline-step.done .timeline-label, .timeline-step.current .timeline-label { color: var(--text-primary); }
.timeline-line { flex: 1; height: 2px; min-width: 20px; background: var(--border); margin-bottom: 1.1rem; }
.timeline-line.done { background: var(--accent); }

.track-form .form-group { margin-bottom: 1rem; }
.track-result { margin-top: 1.5rem; padding: 1rem; background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-md); }

@media (max-width: 768px) {
    .toast-container { left: 1rem; right: 1rem; max-width: none; }
}