/* Elite E-commerce Theme: Ultra Professional Design */
:root {
    --primary: #00d4d4;
    --primary-dark: #00b3b3;
    --secondary: #1a1f36;
    --secondary-light: #2d3348;
    --accent: #ff6b35;
    --accent-dark: #e55a2b;
    --dark: #0f1419;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    /* Ürün kartı vurgu rengi - kategori sayfası ile aynı (tüm sayfalarda) */
    --cat-primary: #0079a9;
    --cat-primary-dark: #006a94;
    --cat-primary-light: #0099d6;
}

.chat-widget-btn.chat-btn-alert {
    animation: chat-pulse 1s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(0,121,169,0.35);
}
.chat-widget-btn.chat-btn-alert::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid var(--cat-primary-light, #0099d6);
    border-radius: 50%;
    opacity: 0.9;
    animation: chat-ping 1.2s ease-out infinite;
    pointer-events: none;
}
.chat-widget-btn.chat-btn-alert .chat-widget-badge {
    display: flex;
    animation: badge-pop 0.6s ease;
}

/* Back to Top (shared anchor class) */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cat-primary, #0079a9), var(--cat-primary-dark, #006a94));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1000;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    text-decoration: none;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

@keyframes chat-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,121,169,0.45); }
    70% { box-shadow: 0 0 0 12px rgba(0,121,169,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,121,169,0); }
}

@keyframes chat-ping {
    0% { transform: scale(0.9); opacity: 0.8; }
    70% { transform: scale(1.25); opacity: 0; }
    100% { transform: scale(1.25); opacity: 0; }
}

@keyframes badge-pop {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* ==========================
   Checkout Page Styling
   ========================== */
.checkout-container {
    padding: 42px 0 96px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.checkout-page-bg {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0,121,169,0.08), transparent 35%),
                radial-gradient(circle at 80% 10%, rgba(0,121,169,0.06), transparent 32%),
                linear-gradient(180deg, #f7f9fb 0%, #ffffff 55%);
    z-index: 0;
    pointer-events: none;
}
.checkout-container h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gray-900, #1f2937);
    margin-bottom: 18px;
}

.checkout-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}
.checkout-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--gray-200, #e5e7eb);
    background: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.04);
    transition: all var(--transition-base, 0.25s ease);
}
.checkout-step .step-number {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--gray-100, #f3f4f6);
    color: var(--gray-700, #374151);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}
.checkout-step .step-label {
    font-weight: 600;
    color: var(--gray-800, #1f2937);
}
.checkout-step.step-active {
    border-color: rgba(0,121,169,0.18);
    background: linear-gradient(135deg, rgba(0,121,169,0.1), rgba(0,121,169,0.02));
}
.checkout-step.step-active .step-number {
    background: linear-gradient(135deg, var(--cat-primary, #0079a9), var(--cat-primary-dark, #006a94));
    color: #fff;
}
.checkout-step.step-completed .step-number {
    background: #16a34a;
    color: #fff;
}

.checkout-progress {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: var(--gray-200, #e5e7eb);
    overflow: hidden;
    margin-bottom: 24px;
}
.checkout-progress .checkout-progress-bar {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cat-primary, #0079a9), var(--cat-primary-dark, #006a94));
    box-shadow: 0 8px 20px rgba(0,121,169,0.25);
}

.checkout-container .card {
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    position: relative;
    background: #fff;
    margin-bottom: 18px;
}
.checkout-container .card-header {
    background: #fff;
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
    padding: 14px 18px;
    font-weight: 700;
    color: var(--gray-900, #111827);
}
.checkout-container .card-body {
    padding: 18px;
}
.checkout-container .form-control,
.checkout-container select,
.checkout-container textarea {
    border-radius: 12px;
    min-height: 44px;
    font-size: 1rem;
    line-height: 1.5;
    padding: 12px 14px;
    color: var(--gray-900, #111827);
}
.checkout-container textarea.form-control {
    min-height: 88px;
    padding-top: 12px;
    padding-bottom: 12px;
    resize: vertical;
    vertical-align: top;
}
.checkout-container label.form-label {
    font-weight: 600;
    color: var(--gray-800, #1f2937);
    font-size: 0.95rem;
}
.checkout-container .text-danger { font-weight: 700; }
.checkout-container .card-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0), rgba(255,255,255,0.35), rgba(255,255,255,0));
    transform: translateX(-120%);
    animation: shimmer-move 2.2s infinite;
    pointer-events: none;
}
.checkout-container .fade-in-up { animation: fadeInUp 0.45s ease both; }
.checkout-container .delay-1 { animation-delay: 0.05s; }
.checkout-container .delay-2 { animation-delay: 0.1s; }
.checkout-container .delay-4 { animation-delay: 0.2s; }

.payment-methods-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.card-input-container {
    position: relative;
}
.card-input-container i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500, #6b7280);
}
.card-details { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: end; }
.expiry-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkout-payment-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600, #6b7280);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.card-type-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
}
.card-type-icon {
    height: 28px;
    width: auto;
    max-width: 48px;
    object-fit: contain;
    filter: saturate(0.95);
    opacity: 0.9;
}
.checkout-container .credit-card-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1rem;
}
.checkout-container .credit-card-form .form-label {
    margin-bottom: 0;
    font-size: 0.9rem;
}
.checkout-container .credit-card-form .form-control {
    width: 100%;
}
/* Teslimat / ödeme formu: etiket ve input hizalı */
.checkout-container .card-body .row .mb-3,
.checkout-container .card-body .mb-3 {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.checkout-container .card-body .form-label {
    margin-bottom: 0;
}
.checkout-container .card-body .form-control,
.checkout-container .card-body select.form-control,
.checkout-container .card-body textarea.form-control {
    width: 100%;
}

.secure-checkout-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}
.secure-checkout-badge i { font-size: 1.1rem; }

/* Sipariş özeti - profesyonel ayrım (ürün / ara toplam / genel toplam) */
.order-summary-list { margin-bottom: 0; }
.order-summary-item,
.order-summary-row,
.order-summary-total {
    border: none;
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.order-summary-item:last-of-type { border-bottom: none; }
.order-summary-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.order-summary-item-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900, #111827);
    margin: 0 0 2px 0;
    line-height: 1.3;
}
.order-summary-item-variant,
.order-summary-item-sku {
    font-size: 0.8rem;
    color: var(--gray-600, #6b7280);
    display: block;
}
.order-summary-item-qty {
    font-size: 0.85rem;
    color: var(--gray-600, #6b7280);
    margin-top: 4px;
}
.order-summary-item-total {
    font-weight: 700;
    color: var(--gray-900, #111827);
    white-space: nowrap;
    font-size: 1rem;
}
.order-summary-divider {
    border: none;
    border-bottom: 2px solid var(--gray-200, #e5e7eb);
    padding: 8px 0;
    margin: 4px 0;
    list-style: none;
}
.order-summary-row {
    padding: 10px 0;
    font-size: 0.95rem;
}
.order-summary-row span { color: var(--gray-700, #374151); }
.order-summary-total {
    background: linear-gradient(135deg, rgba(0,121,169,0.08), rgba(0,121,169,0.04));
    border: none;
    border-radius: 10px;
    padding: 14px 12px;
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 700;
}
.order-summary-total span { color: var(--gray-800, #1f2937); }
.order-summary .total-amount { font-size: 1.15rem; color: var(--cat-primary, #0079a9); }
/* Eski sınıflarla uyumluluk */
.order-summary .list-group-item.bg-light { background: transparent; }
.order-summary .price-tag { font-weight: 700; }

.checkout-container .form-control,
.checkout-container select,
.checkout-container textarea {
    border-radius: 10px;
    border: 1px solid var(--gray-300, #d1d5db);
    box-shadow: none;
    transition: border-color var(--transition-fast, 150ms ease), box-shadow var(--transition-fast, 150ms ease);
    font-size: 1rem;
    padding: 12px 14px;
    line-height: 1.5;
    color: var(--gray-900, #111827);
}
.checkout-container textarea.form-control {
    padding-top: 12px;
    padding-bottom: 12px;
    min-height: 88px;
}
.checkout-container .form-control:focus,
.checkout-container select:focus,
.checkout-container textarea:focus {
    border-color: var(--cat-primary, #0079a9);
    box-shadow: 0 0 0 3px rgba(0,121,169,0.15);
}

.checkout-container .btn-primary {
    background: linear-gradient(135deg, var(--cat-primary, #0079a9), var(--cat-primary-dark, #006a94));
    border: none;
    box-shadow: 0 12px 24px rgba(0,121,169,0.25);
    border-radius: 12px;
    font-weight: 700;
    transition: transform 150ms ease, box-shadow 150ms ease;
    min-height: 48px;
}
.checkout-container .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0,121,169,0.3);
}
.checkout-container .btn-primary:disabled {
    opacity: 0.7;
    box-shadow: none;
}

.checkout-container .list-group { margin-bottom: 6px; }
/* Satış sözleşmesi: checkbox yazının başında */
.checkout-terms-wrap { margin-top: 4px; }
.checkout-terms-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: var(--gray-800, #1f2937);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}
.checkout-terms-checkbox {
    margin-top: 3px;
    flex-shrink: 0;
    width: 1.15em;
    height: 1.15em;
}
.checkout-terms-label span { flex: 1; }
.checkout-terms-label a { color: var(--cat-primary, #0079a9); font-weight: 600; text-decoration: none; }
.checkout-terms-label a:hover { text-decoration: underline; }
.checkout-container .form-check-input:checked { background-color: var(--cat-primary, #0079a9); border-color: var(--cat-primary, #0079a9); }

.checkout-container .alert { border-radius: 12px; }

.checkout-steps .step-label { font-size: 0.98rem; }
.checkout-step { min-height: 58px; }

.checkout-container { padding-bottom: 3rem; }

/* Checkout sayfasında footer her zaman görünsün */
.page-checkout-wrap {
    position: relative;
    z-index: 1;
    min-height: 0;
    padding-bottom: 2rem;
}
.page-checkout-wrap + .footer {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gray-200, #e5e7eb);
    background: #fff;
}

/* ==========================
   Sipariş Tamamlandı Sayfası
   ========================== */
.order-completed-page-bg {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0,121,169,0.06), transparent 35%),
                linear-gradient(180deg, #f7f9fb 0%, #fff 50%);
    z-index: 0;
    pointer-events: none;
}
.order-completed-wrap {
    position: relative;
    z-index: 1;
    padding-bottom: 3rem;
}
.order-completed-wrap + .footer {
    position: relative;
    z-index: 2;
}

.order-completed-inner .checkout-steps { margin-bottom: 1.5rem; }
.order-completed-inner .checkout-progress { margin-bottom: 1.5rem; }

.order-completed-inner .alert-success {
    border-radius: 12px;
    font-size: 1.05rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(22, 163, 74, 0.3);
}
.order-completed-inner .check-circle i {
    font-size: 4rem;
    color: var(--cat-primary, #0079a9) !important;
}
.order-completed-inner h2.fw-bold {
    font-size: 1.75rem;
    color: var(--gray-900, #111827);
}
.order-completed-inner .lead.text-muted {
    font-size: 1rem;
    color: var(--gray-600, #6b7280);
}

.order-info-box {
    max-width: 420px;
    margin: 0 auto 1.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(0,121,169,0.06), rgba(0,121,169,0.02));
    border: 1px solid rgba(0,121,169,0.15);
    border-radius: 12px;
}
.order-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
}
.order-info-row:last-child { border-bottom: none; }
.order-info-label {
    font-size: 0.9rem;
    color: var(--gray-600, #6b7280);
}
.order-info-value {
    font-weight: 700;
    color: var(--gray-900, #111827);
}
.order-info-total {
    font-size: 1.1rem;
    color: var(--cat-primary, #0079a9);
}

.order-completed-card {
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    background: #fff;
}
.order-completed-card-header {
    background: #fff;
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
    padding: 1rem 1.25rem;
    font-weight: 700;
    color: var(--gray-900, #111827);
    font-size: 1rem;
}
.order-completed-card-header i {
    color: var(--cat-primary, #0079a9);
}
.order-completed-card .card-body {
    padding: 1.25rem 1.5rem;
}

.order-completed-table {
    margin-bottom: 0;
}
.order-completed-table thead th {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-700, #374151);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
    background: var(--gray-50, #f9fafb);
}
.order-completed-table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--gray-100, #f3f4f6);
}
.order-completed-table tbody tr:last-child td { border-bottom: none; }
.order-completed-table tfoot td {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-top: 2px solid var(--gray-200, #e5e7eb);
}
.order-completed-table tfoot tr:last-child td {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--cat-primary, #0079a9);
}

.order-completed-item-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
}
.order-completed-item-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: var(--gray-100, #f3f4f6);
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-completed-product-link {
    font-size: 0.85rem;
    color: var(--cat-primary, #0079a9);
    text-decoration: none;
}
.order-completed-product-link:hover { text-decoration: underline; color: var(--cat-primary-dark, #006a94); }

.order-completed-address-card .card-body address {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-700, #374151);
}

.order-completed-divider {
    text-align: center;
    margin: 2rem 0 1.5rem;
    position: relative;
}
.order-completed-divider::before,
.order-completed-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--gray-200, #e5e7eb);
}
.order-completed-divider::before { left: 0; }
.order-completed-divider::after { right: 0; }
.order-completed-divider span {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 0 1rem;
    font-size: 0.9rem;
    color: var(--gray-500, #6b7280);
}

.order-completed-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}
.order-completed-btn {
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    min-width: 180px;
}
.order-completed-actions .btn-primary {
    background: linear-gradient(135deg, var(--cat-primary, #0079a9), var(--cat-primary-dark, #006a94));
    border: none;
}
.order-completed-actions .btn-outline-primary {
    border-width: 2px;
}

@media (max-width: 768px) {
    .order-completed-inner .checkout-steps { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .order-completed-inner h2.fw-bold { font-size: 1.4rem; }
    .order-info-box { margin-left: 0; margin-right: 0; }
    .order-completed-card .card-body { padding: 1rem; }
    .order-completed-table thead th,
    .order-completed-table tbody td { padding: 0.75rem; font-size: 0.9rem; }
    .order-completed-actions { flex-direction: column; }
    .order-completed-btn { min-width: 100%; }
}

@keyframes shimmer-move {
    0% { transform: translateX(-120%); }
    60% { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
    .checkout-steps { grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); }
    .checkout-container { padding: 20px 0 40px; }
}

@media (max-width: 576px) {
    .checkout-container h1 { font-size: 1.35rem; }
    .checkout-step { padding: 10px 12px; }
    .checkout-container .card-body { padding: 14px; }
    .card-type-icons { gap: 6px; }
    .secure-checkout-badge { flex-direction: column; align-items: flex-start; }
}

/* Chat widget (global) - yüksek z-index ile her zaman tıklanabilir */
.chat-widget-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: auto;
    background: linear-gradient(135deg, var(--cat-primary, #0079a9), var(--cat-primary-dark, #006a94));
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    pointer-events: auto;
    transition: none;
    overflow: visible;
}

.chat-widget-btn:hover,
.chat-widget-btn:focus {
    background: linear-gradient(135deg, var(--cat-primary, #0079a9), var(--cat-primary-dark, #006a94));
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: none;
}
.chat-widget-panel {
    z-index: 99998;
}

.chat-widget-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    background: #ff3b30;
    color: #fff;
    border-radius: 10px;
    font-size: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2px 6px;
    font-weight: 700;
    box-shadow: 0 0 0 2px #fff;
    line-height: 1;
}

.chat-widget-panel {
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: auto;
    width: 320px;
    max-width: calc(100vw - 24px);
    height: 65vh;
    max-height: 480px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    z-index: 99998;
    display: none;
    flex-direction: column;
    pointer-events: auto;
}

.chat-widget-header {
    background: linear-gradient(135deg, var(--cat-primary, #0079a9), var(--cat-primary-dark, #006a94));
    color: #fff;
    padding: 12px 14px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-widget-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

.chat-widget-messages {
    flex: 1;
    overflow: auto;
    padding: 12px;
    background: #f9fafb;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Segoe UI", sans-serif;
}

.chat-widget-messages::-webkit-scrollbar {
    width: 8px;
}
.chat-widget-messages::-webkit-scrollbar-track {
    background: #edf1f5;
    border-radius: 8px;
}
.chat-widget-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--cat-primary, #0079a9), var(--cat-primary-dark, #006a94));
    border-radius: 8px;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.4);
}
.chat-widget-messages::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--cat-primary, #0079a9), var(--cat-primary-dark, #006a94));
}

.chat-widget-messages .msg { margin-bottom: 8px; }
.chat-widget-messages .me { text-align: right; }

.chat-widget-messages .bubble {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 12px;
    max-width: 85%;
    word-break: break-word;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Segoe UI", sans-serif;
}

.chat-widget-messages .chat-attachment-img {
    display: block;
    max-width: 100%;
    max-height: 220px;
    border-radius: 8px;
    margin-top: 6px;
    object-fit: contain;
}

.chat-widget-messages .me .bubble {
    background: linear-gradient(135deg, var(--cat-primary, #0079a9), var(--cat-primary-dark, #006a94));
    color: #fff;
    box-shadow: 0 6px 12px rgba(0,121,169,0.2);
}
.chat-widget-messages .admin .bubble { background: #fff; border: 1px solid #e5e7eb; }

.chat-widget-input {
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 6px;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.chat-widget-input input {
    flex: 1;
    min-width: 120px;
    height: 42px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 0 12px;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Segoe UI", sans-serif;
}

.chat-widget-emoji-btn,
.chat-widget-file-btn {
    background: transparent;
    border: none;
    color: #666;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
}
.chat-widget-emoji-btn:hover,
.chat-widget-file-btn:hover { background: #f0f0f0; color: #ff6b35; }

.chat-widget-file-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 6px 10px;
    margin-bottom: 4px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
}
.chat-widget-file-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.chat-widget-file-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #374151;
}
.chat-widget-file-remove {
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 20px;
    line-height: 1;
    padding: 2px 6px;
    cursor: pointer;
    border-radius: 4px;
}
.chat-widget-file-remove:hover { background: #fee2e2; color: #dc2626; }

.chat-widget-emoji-picker {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 8px;
    max-height: 180px;
    overflow-y: auto;
    display: none;
    flex-wrap: wrap;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 10;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}
.chat-widget-emoji-picker.open { display: flex; }
.chat-widget-emoji-picker span { cursor: pointer; font-size: 22px; padding: 2px; font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif; }
.chat-widget-emoji-picker span:hover { transform: scale(1.2); }

.chat-widget-send {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cat-primary, #0079a9), var(--cat-primary-dark, #006a94));
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.chat-widget-send i { font-size: 1rem; }

@media (max-width: 480px) {
    .chat-widget-panel {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: calc(100vw - 24px);
        max-width: 340px;
        height: 58vh;
        max-height: 420px;
        bottom: 16px;
    }
    .chat-widget-btn {
        left: 12px;
        right: auto;
    }
}

.product-title a {
    color: #111;
    text-decoration: none;
    display: inline-block;
}

.product-title a:hover {
    color: var(--cat-primary);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    letter-spacing: -0.025em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Üst bar: sol = iletişim, sağ = Kurumsal + İletişim linkleri */
.top-bar-content {
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}
.top-bar-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem 2rem;
}
@media (min-width: 1024px) {
    .top-bar-left {
        gap: 1.5rem 7rem;
    }
}
@media (min-width: 1440px) {
    .top-bar-left {
        gap: 1.5rem 14rem;
    }
}
/* Kurumsal / İletişim: fotoğraftaki gibi yatay, 2-3 satırda da düz */
/* Küçük linkler + dikey ayırıcı (Mağazalarımız | Kampanyalar tarzı) */
.top-bar-nav-links {
    display: flex;
    align-items: center;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
}
.top-bar-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 2em;
    padding: 0.2rem 0.4rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1.3;
    white-space: normal;
    transition: color var(--transition-fast);
}
.top-bar-link:hover {
    color: var(--primary);
}
.top-bar-sep {
    width: 1px;
    height: 1em;
    background: rgba(255,255,255,0.5);
    flex-shrink: 0;
}
.top-bar-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}
.top-bar-contact-item:hover {
    color: var(--primary);
}
.top-bar-contact-item i {
    opacity: 0.9;
}
.top-bar-contact-item-text {
    cursor: default;
    pointer-events: none;
}
.top-bar-contact-item-text:hover {
    color: var(--white);
}
.top-bar-label {
    font-weight: 600;
}

.top-bar a {
    color: var(--white);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.top-bar a:hover {
    color: var(--primary);
}

/* Responsive: üst bar (top bar) gizle */
@media (max-width: 991px) {
    .top-bar {
        display: none !important;
    }
}

/* Header - sayfa ile birlikte kayar, sabit kalmaz (desktop + responsive) */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
}

.header-main {
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Desktop: header-row-1 görünmez kutu (içeriği doğrudan flex’e katılır), sıra: logo | arama | butonlar */
.header-row-1 {
    display: contents;
}

.header-content .logo {
    order: 1;
}

.search-container {
    order: 2;
}

.header-actions {
    order: 3;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .header-main .logo img {
        max-height: 100px !important;
        height: 100px !important;
    }
    .header-row-1 {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        width: 100%;
        order: 1;
        min-width: 0;
    }
    .header-row-1 .logo {
        flex: 0 1 auto;
        min-width: 0;
        margin-top: 0.35rem;
        margin-left: 0.5rem;
    }
    .header-row-1 .logo img {
        max-height: 74px !important;
        height: auto !important;
        width: auto !important;
        max-width: 100%;
        object-fit: contain;
    }
    .header-row-1 .header-actions {
        flex: 0 0 auto;
        gap: 0.5rem;
    }
    .header-row-1 .header-actions .action-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9375rem;
    }
    .header-row-1 .header-actions .action-btn i {
        font-size: 1.2rem;
    }
    .header-content .search-container {
        order: 2;
        flex-basis: 100%;
        width: 100%;
        max-width: none;
        margin-top: 0.5rem;
        display: flex !important;
        justify-content: stretch !important;
    }
    .header-content .search-container .search-form {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .header-main { padding: 0.75rem 0; }
    .header-row-1 .logo img { max-height: 62px !important; }
    .header-row-1 .header-actions .action-btn { padding: 0.55rem 0.85rem; font-size: 0.875rem; }
    .header-row-1 .header-actions .action-btn i { font-size: 1.15rem; }
    .header-actions .cart-link .cart-count { top: -4px; right: -4px; }
    .search-form { margin-top: 0; }
}

@media (max-width: 425px) {
    .header-row-1 .header-actions .action-btn {
        padding: 0.45rem 0.75rem;
        font-size: 0.8125rem;
    }
    .header-row-1 .header-actions .action-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .header-row-1 .logo img { max-height: 54px !important; }
    .header-row-1 .header-actions .action-btn {
        padding: 0.5rem 0.6rem;
        font-size: 0.875rem;
    }
    .header-row-1 .header-actions .action-btn .action-btn-text { display: none; }
    .header-row-1 .header-actions .action-btn i { margin: 0; font-size: 1.15rem; }
}

.header-content .search-container {
    flex: 1;
    max-width: 700px;
}

.search-form {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.875rem 3.5rem 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    background: var(--gray-50);
    transition: all var(--transition-base);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.1);
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.05);
}

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

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
}

.action-btn:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
}

/* Navigation - fotoğraftaki gibi ortalanmış, düzgün hizalı (Kategoriler dropdown dahil) */
.nav-main {
    background: var(--secondary);
    border-top: 1px solid var(--gray-800);
}

.nav-main .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 0 0.125rem;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .nav-list {
        gap: 0 0.5rem;
    }
}

@media (min-width: 1200px) {
    .nav-list {
        gap: 0 1rem;
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.25rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
    position: relative;
    text-align: center;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(0, 200, 150, 0.1);
}

/* ============================================================
   KATEGORİLER SIDEBAR - Yandan açılır, "Kategoriler"e basınca açılır
   ============================================================ */

/* KATEGORİLER butonu diğer nav sekmeleriyle aynı görünsün - sidebar'a tam otursun */
.categories-sidebar-trigger-wrap {
    position: relative;
}

.categories-sidebar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.875rem 1.25rem;
    background: transparent;
    color: var(--white);
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    border-radius: 0;
    text-align: center;
    white-space: nowrap;
}

.categories-sidebar-btn:hover {
    color: var(--primary);
    background: rgba(0, 200, 150, 0.1);
}

.categories-sidebar-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width var(--transition-base);
}

.categories-sidebar-btn:hover::after {
    width: 80%;
}

.categories-sidebar-btn.is-active {
    color: var(--primary);
    background: rgba(0, 200, 150, 0.1);
}

.categories-sidebar-btn.is-active::after {
    width: 80%;
}

.categories-sidebar-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.categories-sidebar-btn.is-active .categories-sidebar-arrow {
    transform: rotate(180deg);
}

/* Overlay - sidebar açıkken arka plan karartma */
.categories-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.categories-sidebar-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* Sidebar panel - soldan kayarak girer */
.categories-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.categories-sidebar.is-open {
    transform: translateX(0);
}

.categories-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 2;
}

.categories-sidebar-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.categories-sidebar-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #e2e8f0;
    color: #475569;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.categories-sidebar-close:hover {
    background: #cbd5e1;
    color: #1e293b;
}

.categories-sidebar-body {
    padding: 0.5rem 0;
}

.categories-sidebar-item {
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.categories-sidebar-item:last-child {
    border-bottom: none;
}

.categories-sidebar-cat-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 1.25rem 14px 1.25rem;
    color: #1e293b;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.categories-sidebar-cat-link:hover {
    background: rgba(0, 121, 169, 0.08);
    color: #0079a9;
}

.categories-sidebar-cat-link i:first-child {
    width: 22px;
    text-align: center;
    color: #0079a9;
    font-size: 1rem;
}

.categories-sidebar-item[data-has-sub="1"] .categories-sidebar-cat-link {
    padding-right: 48px;
}

.categories-sidebar-toggle {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s, transform 0.25s ease;
}

.categories-sidebar-toggle:hover {
    background: #f1f5f9;
    color: #0079a9;
}

.categories-sidebar-toggle.is-open {
    transform: translateY(-50%) rotate(180deg);
}

.categories-sidebar-sublist {
    list-style: none;
    margin: 0;
    padding: 0 0 12px 0;
    display: none;
    background: #f8fafc;
}

.categories-sidebar-sublist[style*="display: block"] {
    display: block;
}

.categories-sidebar-sublist li a {
    display: block;
    padding: 10px 1.25rem 10px 3rem;
    color: #475569;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.categories-sidebar-sublist li a:hover {
    background: rgba(0, 121, 169, 0.06);
    color: #0079a9;
}

.categories-sidebar-viewall {
    color: #0079a9 !important;
    font-weight: 600;
}

.categories-sidebar-viewall:hover {
    color: #006a94 !important;
}

@media (max-width: 991px) {
    .categories-sidebar-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    /* Mobil menü (dropdown) açıkken Kategoriler yazısı gösterilsin */
    .nav-main:not(.mobile-nav-open) .categories-sidebar-btn span {
        display: none;
    }
    .categories-sidebar {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .categories-sidebar {
        width: 100%;
        max-width: 100%;
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    list-style: none;
    padding: 0.5rem 0;
    border: 1px solid var(--gray-200);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--gray-700);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Sadece hamburger çizgileri; Ana Menü yazısı (mobile-menu-label) hariç */
.mobile-menu-toggle .hamburger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--secondary);
    margin: 0.25rem 0;
    transition: all var(--transition-base);
}

/* Hero Combo */
.hero-combo {
    padding: 1.25rem 0 0.75rem;
    background: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.25rem;
    align-items: stretch;
}

.hero-main {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    overflow: hidden;
}

.hero-main-swiper {
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    width: 100%;
}

.hero-main-swiper .swiper-wrapper {
    align-items: stretch;
}

.hero-main-swiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
    height: 100%;
    box-sizing: border-box;
}

.hero-main-slide {
    background: linear-gradient(135deg, rgba(0,212,212,0.2), rgba(30,136,229,0.3));
    height: 100%;
    overflow: hidden;
}

.hero-main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.hero-main-prev, .hero-main-next,
.hero-side-prev, .hero-side-next {
    --swiper-navigation-size: 18px;
    width: 28px;
    height: 28px;
    background: rgba(0, 212, 212, 0.9);
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    font-size: 14px;
}

/* Fırsat ürünü slider okları ana slider ile hizalı olsun */
.hero-side-swiper .hero-side-prev { left: 10px; }
.hero-side-swiper .hero-side-next { right: 10px; }
.hero-side-swiper .hero-side-prev,
.hero-side-swiper .hero-side-next {
    top: 43%;
    transform: translateY(-50%);
}

.hero-main-swiper .hero-main-prev,
.hero-main-swiper .hero-main-next {
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .hero-main-prev, .hero-main-next,
    .hero-side-prev, .hero-side-next {
        width: 24px;
        height: 24px;
        font-size: 12px;
        box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    }
}

.hero-main-pagination {
    bottom: 10px !important;
}

.hero-side {
    background: #fff;
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 320px;
    max-width: 320px;
    height: 100%;
}

.hero-side-header {
    font-weight: 800;
    font-size: 1rem;
    color: #111;
    padding: 0.25rem 0.5rem;
}

.hero-side-swiper {
    height: 280px;
    width: 100%;
    flex: 1;
}

.hero-side-swiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
}

.hero-side-slide {
    height: auto;
}

.hero-side-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    background: #f9fcfd;
    border-radius: 12px;
    padding: 0.65rem;
    height: 100%;
    box-shadow: inset 0 0 0 1px rgba(0,212,212,0.16);
}

.hero-side-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 0.35rem;
    text-align: center;
    font-weight: 700;
    color: #111;
}

.hero-side-countdown span {
    display: block;
    font-size: 0.95rem;
}

.hero-side-countdown small {
    color: #6b7280;
    font-size: 0.75rem;
}

.hero-side-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.hero-side-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.hero-side-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 0.35rem 0.65rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.hero-side-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-side-title {
    font-weight: 700;
    color: #111;
    text-decoration: none;
    line-height: 1.3;
}

.hero-side-title:hover { color: var(--primary); }

.hero-side-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.hero-stories {
    margin-top: 1rem;
    background: #fff;
    border-radius: 16px;
    padding: 0.75rem;
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.story-chip {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    color: #111;
    min-width: 78px;
}

.story-ring {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #00d4d4, #1e88e5);
    z-index: 1;
}

.story-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #eef6f8;
    display: grid;
    place-items: center;
    overflow: hidden;
    z-index: 2;
    box-shadow: inset 0 0 0 3px rgba(0,212,212,0.6);
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-avatar i { color: #00b3b3; font-size: 1.15rem; }

.story-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    max-width: 80px;
}

/* Fırsat Ürünü sadece desktop - tablet/mobilde gizle */
@media (max-width: 991px) {
    .hero-side {
        display: none !important;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-main-swiper { height: 300px; }
}

@media (max-width: 640px) {
    .hero-main-swiper { height: 240px; }
    .hero-stories { padding: 0.5rem; gap: 0.5rem; }
    .story-chip { min-width: 68px; }
}

/* Features Bar */
.features-bar {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    flex-wrap: nowrap;
}

.features-bar .feature-icon {
    width: 3rem;
    height: 3rem;
    background: #0079a9;
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Başlık ve açıklama siyah, başlık belirgin */
.features-bar .feature-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #111;
}

.features-bar .feature-content p {
    font-size: 0.875rem;
    color: #374151;
    margin: 0;
}

/* Product Sections */
.section {
    padding: 4rem 0;
}

.section-light {
    background: var(--white);
}

.section-gray {
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Sliders */
.slider-wrap {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 0.25rem 0.25rem 0.75rem;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    margin: 0 -0.25rem;
}

.slider-track::-webkit-scrollbar {
    height: 8px;
}

.slider-track::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 999px;
}

.slider-track::-webkit-scrollbar-track {
    background: var(--gray-100);
}

.slider-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
}

.product-swiper,
.category-swiper {
    background: #fff;
    border-radius: 16px;
    padding: 0.75rem 0.75rem 1rem;
    position: relative;
    overflow: visible;
}

.category-swiper .swiper-button-next,
.category-swiper .swiper-button-prev {
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    color: #1e88e5;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: auto;
}

.category-swiper .swiper-button-next {
    right: 15px;
}

.category-swiper .swiper-button-prev {
    left: 15px;
}

.category-swiper .swiper-button-next:after,
.category-swiper .swiper-button-prev:after {
    font-size: 12px;
    font-weight: 800;
}

.category-pagination {
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
}

.category-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--gray-300);
    opacity: 1;
}

.category-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

.product-swiper .swiper-wrapper {
    align-items: stretch;
}

.product-swiper .swiper-slide {
    width: 240px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
}

.product-swiper .swiper-slide .product-card,
.slider-card .product-card {
    height: 100%;
    width: 100%;
    min-height: 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Ürün kartı - kategori sayfası (/kategori/hali) ile aynı renk ve özellikler (tüm sayfalarda) */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    isolation: isolate;
}

.product-card::after {
    content: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #f8f9fa;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 2px 8px rgba(0, 121, 169, 0.3);
}

.product-badge.new {
    background: var(--success);
}

.product-badge.sale {
    background: var(--cat-primary);
    box-shadow: 0 2px 8px rgba(0, 121, 169, 0.4);
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    color: #333;
    text-decoration: none;
}

.action-btn-small:hover {
    background: var(--cat-primary);
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.product-category {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.4;
    flex: 0 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a,
.product-title-link {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.2s;
}

.product-title a:hover,
.product-title-link:hover {
    color: var(--cat-primary);
}

.product-description {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0 0 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--cat-primary);
}

.price-original {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

/* Slider/grid içinde price-current zaten yukarıda tanımlı (--cat-primary) */
.product-card .price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--cat-primary);
}

.product-card .price-original {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.price-discount {
    background: var(--error);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
}

.product-buttons {
    display: none;
}

.btn-add-cart {
    flex: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    padding: 0.5rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-quick-view {
    background: var(--gray-100);
    color: var(--gray-600);
    border: none;
    padding: 0.7rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    flex: 0 0 48px;
    display: none;
}

.btn-quick-view:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

/* Categories */
.categories-grid,
.slider-track .category-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.category-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 1rem;
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    width: 116px;
    height: 116px;
    background: #fff;
    border-radius: 12px;
    display: grid;
    place-items: center;
    overflow: hidden;
    margin-bottom: 0.55rem;
    box-shadow: 0 10px 24px rgba(16,24,40,0.12);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.category-name {
    font-size: 0.98rem;
    font-weight: 800;
    margin-bottom: 0;
}

.category-count {
    display: none;
}

/* Kategorilerdeki İndirimleri Keşfet - Fotoğraftaki gibi */
.category-discount-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.category-discount-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 12px;
    padding-bottom: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-discount-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.category-discount-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #eee;
}

.category-discount-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-discount-card:hover .category-discount-image img {
    transform: scale(1.05);
}

.category-discount-image--icon {
    font-size: 56px;
    color: #0079a9;
}

/* Resim ile yazı bandı arasında belirgin boşluk (fotoğraftaki gibi) */
.category-discount-label {
    display: block;
    margin-top: 12px;
    padding: 12px 16px;
    background: var(--secondary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.category-discount-card:hover .category-discount-label {
    background: #005a8c;
}

@media (max-width: 1200px) {
    .category-discount-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    .category-discount-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .category-discount-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .category-discount-label {
        font-size: 13px;
        padding: 12px 10px;
    }
}

@media (max-width: 480px) {
    .category-discount-grid {
        gap: 10px;
    }
    .category-discount-label {
        font-size: 11px;
        padding: 10px 8px;
    }
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.newsletter-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    background: var(--white);
    color: var(--gray-900);
}

.newsletter-btn {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.newsletter-btn:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #fff;
    color: var(--gray-900);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--gray-700);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 100px;
    width: auto;
}

.footer-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--secondary);
    color: var(--white);
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ============================================================
   PROFİL SAYFASI - Profesyonel tasarım (grid + bileşenler Bootstrap yok)
   ============================================================ */
.profile-page {
    background: #fff;
    min-height: 60vh;
}

.profile-page.container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Grid layout */
.profile-page .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.profile-page .row > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.profile-page .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.profile-page .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.profile-page .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.profile-page .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.profile-page .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.profile-page .py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.profile-page .mb-3 { margin-bottom: 1rem; }
.profile-page .mb-4 { margin-bottom: 1.5rem; }
.profile-page .mb-0 { margin-bottom: 0; }

.profile-page .d-flex { display: flex; }
.profile-page .gap-2 { gap: 0.5rem; }
.profile-page .justify-content-end { justify-content: flex-end; }
.profile-page .align-items-center { align-items: center; }
.profile-page .text-center { text-align: center; }

.profile-page .shadow {
    box-shadow: var(--shadow-md);
}

.profile-page .bg-white {
    background: #fff;
}

.profile-page .text-primary { color: var(--primary); }
.profile-page .text-muted { color: var(--gray-500); font-size: 0.8125rem; }
.profile-page .me-2 { margin-right: 0.5rem; }

.profile-page .form-control {
    display: block;
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--gray-900);
    background: #fff;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.profile-page .form-control:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 212, 0.15);
}

.profile-page .form-control[readonly],
.profile-page .form-control:disabled {
    background: var(--gray-100);
    cursor: not-allowed;
}

.profile-page textarea.form-control {
    min-height: 80px;
    resize: vertical;
}

.profile-page .form-text {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

@media (max-width: 991px) {
    .profile-page .col-lg-3,
    .profile-page .col-lg-9,
    .orders-page .col-lg-3,
    .orders-page .col-lg-9,
    .order-details-page .col-lg-3,
    .order-details-page .col-lg-9,
    .addresses-page .col-lg-3,
    .addresses-page .col-lg-9,
    .change-password-page .col-lg-3,
    .change-password-page .col-lg-9,
    .wishlist-page .col-lg-3,
    .wishlist-page .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    /* Tablet ve mobilde sidebar üstte ortada, altında içerik (addresses + wishlist aynı) */
    .profile-page .row,
    .orders-page .row,
    .order-details-page .row,
    .addresses-page .row,
    .change-password-page .row,
    .wishlist-page .row {
        flex-direction: column;
        align-items: stretch;
    }
    .profile-page .col-lg-3,
    .orders-page .col-lg-3,
    .order-details-page .col-lg-3,
    .addresses-page .col-lg-3,
    .change-password-page .col-lg-3,
    .wishlist-page .col-lg-3 {
        display: flex;
        justify-content: center;
        margin-bottom: 1.5rem;
        order: 0;
    }
    .profile-page .col-lg-9,
    .orders-page .col-lg-9,
    .order-details-page .col-lg-9,
    .addresses-page .col-lg-9,
    .change-password-page .col-lg-9,
    .wishlist-page .col-lg-9 {
        order: 1;
        width: 100%;
    }
    /* Sidebar: responsive'de ortada, max 360px (addresses ile aynı) */
    .profile-page .profile-user-sidebar,
    .orders-page .profile-user-sidebar,
    .order-details-page .profile-user-sidebar,
    .addresses-page .profile-user-sidebar,
    .change-password-page .profile-user-sidebar,
    .wishlist-page .profile-user-sidebar {
        width: 100%;
        max-width: 360px;
        min-width: 0;
    }
}

/* Tablet ve mobilde adres/wishlist kart tam genişlik (addresses ile aynı) */
@media (max-width: 991px) {
    .addresses-page .card,
    .wishlist-page .card {
        width: 100%;
        max-width: 100%;
    }
    .addresses-page .row > [class*="col-"],
    .wishlist-page .row > [class*="col-"] {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

@media (max-width: 768px) {
    .profile-page .col-md-4,
    .profile-page .col-md-6,
    .profile-page .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .profile-page #buttonContainer {
        flex-direction: column;
    }
    .profile-page #buttonContainer .btn {
        width: 100%;
    }
}

/* ============================================================
   SİPARİŞLER SAYFASI (orders-page) - Grid + ortak yardımcılar
   ============================================================ */
.orders-page {
    background: #fff;
    min-height: 60vh;
}

.orders-page.container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.orders-page .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.orders-page .row > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.orders-page .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
.orders-page .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
.orders-page .py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.orders-page .mb-4 { margin-bottom: 1.5rem; }
.orders-page .mb-0 { margin-bottom: 0; }
.orders-page .d-flex { display: flex; }
.orders-page .flex-column { flex-direction: column; }
.orders-page .justify-content-between { justify-content: space-between; }
.orders-page .align-items-center { align-items: center; }
.orders-page .text-center { text-align: center; }
.orders-page .shadow { box-shadow: var(--shadow-md); }
.orders-page .bg-white { background: #fff; }
.orders-page .text-primary { color: var(--primary); }
.orders-page .text-muted { color: var(--gray-500); }
.orders-page .me-2 { margin-right: 0.5rem; }
.orders-page .ms-1 { margin-left: 0.25rem; }
.orders-page .fw-bold { font-weight: 700; }
.orders-page .p-0 { padding: 0; }

/* Siparişler kartı */
.orders-page .card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.orders-page .card-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    background: #fff;
}

.orders-page .card-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
}

.orders-page .card-body {
    padding: 0;
    background: #fff;
}

/* Filtre */
.orders-page .order-filter {
    width: 180px;
}

.orders-page .form-select,
.orders-page .form-select-sm {
    display: block;
    width: 100%;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-900);
    background: #fff;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    cursor: pointer;
}

.orders-page .form-select:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 212, 0.15);
}

/* Tablo */
.orders-page .table-responsive {
    overflow-x: auto;
}

.orders-page .table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.orders-page .table th {
    font-weight: 600;
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 2px solid var(--gray-200);
    color: var(--gray-700);
    background: var(--gray-50);
}

.orders-page .table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
}

.orders-page .table tbody tr:last-child td {
    border-bottom: none;
}

.orders-page .table tbody tr:hover {
    background: rgba(0, 212, 212, 0.04);
}

.orders-page .order-id {
    font-weight: 600;
    color: var(--gray-900);
}

.orders-page .order-date .date-primary {
    font-weight: 500;
    color: var(--gray-900);
}

.orders-page .order-date .date-secondary {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.orders-page .order-total {
    font-weight: 600;
    color: var(--gray-900);
}

/* Durum göstergesi */
.orders-page .status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.orders-page .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.orders-page .status-dot.bg-warning { background: var(--warning); }
.orders-page .status-dot.bg-info { background: var(--info); }
.orders-page .status-dot.bg-dark { background: var(--gray-800); }
.orders-page .status-dot.bg-success { background: var(--success); }
.orders-page .status-dot.bg-danger { background: var(--error); }
.orders-page .status-dot.bg-secondary { background: var(--gray-500); }

.orders-page .status-text {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--gray-700);
}

/* Butonlar */
.orders-page .order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.orders-page .order-actions .btn {
    min-width: 100px;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    white-space: nowrap;
    box-sizing: border-box;
}

.orders-page .order-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
}

.orders-page .order-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #009999 100%);
}

.orders-page .order-actions .btn-outline-danger {
    background: transparent;
    color: var(--error);
    border: 1px solid var(--error);
}

.orders-page .order-actions .btn-outline-danger:hover {
    background: var(--error);
    color: #fff;
}

.orders-page .order-actions .btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.orders-page .order-actions .btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.orders-page .order-actions .btn-outline-dark {
    background: transparent;
    color: var(--gray-800);
    border: 1px solid var(--gray-400);
}

.orders-page .order-actions .btn-outline-dark:hover {
    background: var(--gray-800);
    color: #fff;
}

.orders-page .order-actions .btn-outline-success {
    background: transparent;
    color: var(--success);
    border: 1px solid var(--success);
}

.orders-page .order-actions .btn-outline-success:hover {
    background: var(--success);
    color: #fff;
}

.orders-page .order-actions .btn-outline-secondary {
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-400);
}

.orders-page .order-actions .btn-outline-secondary:hover {
    background: var(--gray-100);
}

/* Boş sipariş */
.orders-page .py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.orders-page .empty-orders-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.orders-page .empty-orders-icon i {
    color: var(--gray-400);
    font-size: 2.5rem;
}

.orders-page .empty-orders-icon.fa-4x + .fw-bold,
.orders-page .text-center .fw-bold {
    font-size: 1.125rem;
    color: var(--gray-900);
}

.orders-page .text-center .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.orders-page .text-center .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #009999 100%);
}

/* Kargo takip modalı içi */
.tracking-info {
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.tracking-info .form-label {
    font-weight: 600;
    color: var(--gray-700);
}

.tracking-info .input-group {
    display: flex;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.tracking-info .input-group .form-control {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--gray-300);
}

.tracking-info .input-group .btn {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--gray-300);
    background: var(--gray-100);
    border-left: none;
}

.tracking-info .mb-3 { margin-bottom: 1rem; }
.tracking-info .mt-4 { margin-top: 1.5rem; }

/* Siparişler responsive */
@media (max-width: 991px) {
    .orders-page .order-filter {
        width: 100%;
        margin-top: 0.75rem;
    }
}

@media (max-width: 767px) {
    .orders-page .table th,
    .orders-page .table td {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    .orders-page .card-header {
        flex-wrap: wrap;
    }
    .orders-page .card-header .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .orders-page .table th,
    .orders-page .table td {
        padding: 0.5rem;
        font-size: 0.8125rem;
    }
    .orders-page .order-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .orders-page .order-actions .btn {
        justify-content: center;
    }
    .orders-page .order-actions .ms-1 {
        margin-left: 0;
    }
}

/* Orders page deep mobile tweaks */
.orders-page .card { width: 100%; }
.orders-page .card-header { flex-wrap: wrap; gap: 0.5rem; }
.orders-page .order-filter { margin-left: auto; }
@media (max-width: 576px) {
    .orders-page .order-filter { width: 100%; }
    .orders-page .order-filter select { width: 100%; }
    .orders-page .card-header { justify-content: flex-start; }
    .orders-page .table { font-size: 13px; }
}
@media (max-width: 480px) {
    .orders-page .orders-table table,
    .orders-page .orders-table thead,
    .orders-page .orders-table tbody,
    .orders-page .orders-table th,
    .orders-page .orders-table td,
    .orders-page .orders-table tr { display: block; width: 100%; }
    .orders-page .orders-table thead { display: none; }
    .orders-page .orders-table tr { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 12px; margin-bottom: 12px; box-shadow: var(--shadow-sm); }
    .orders-page .orders-table td { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border: none; }
    .orders-page .orders-table td::before { content: attr(data-label); font-weight: 600; color: var(--gray-700); margin-right: 10px; font-size: 13px; }
    .orders-page .order-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
    .orders-page .order-actions .btn { width: auto; }
}

/* Order history table */
.order-history-table .status-history-cell {
    white-space: normal;
    vertical-align: middle;
}
.order-history-table .status-badges {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.order-history-table .status-badges .badge {
    font-size: 0.82rem;
    padding: 0.45rem 0.65rem;
    border-radius: 999px;
}
.order-history-table .status-badges i {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Order details address card */
.order-details-page .address-card {
    background: #f9fbfc;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}
.order-details-page .address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px 18px;
}
.order-details-page .address-field {
    padding: 10px 12px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
}
.order-details-page .field-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--gray-600);
    margin-bottom: 4px;
}
.order-details-page .field-value {
    display: block;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--gray-900);
    word-break: break-word;
}
.order-details-page .address-note {
    border-top: 1px dashed var(--gray-200);
    padding-top: 12px;
    margin-top: 12px;
    color: var(--gray-600);
}
.order-details-page .address-note small {
    display: flex;
    align-items: center;
    gap: 6px;
}
@media (max-width: 480px) {
    .order-details-page .address-grid { gap: 12px; }
    .order-details-page .address-field { padding: 10px; }
    .order-details-page .field-label { font-size: 0.74rem; }
    .order-details-page .field-value { font-size: 0.95rem; }
}

/* ============================================================
   ADRESLER SAYFASI (addresses-page) - Kurumsal tasarım
   ============================================================ */
.addresses-page {
    background: #fff;
    min-height: 60vh;
}

.addresses-page.container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.addresses-page .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.addresses-page .row > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.addresses-page .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
.addresses-page .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
.addresses-page .col-md-6 { flex: 0 0 50%; max-width: 50%; }
.addresses-page .py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.addresses-page .mb-4 { margin-bottom: 1.5rem; }
.addresses-page .mb-0 { margin-bottom: 0; }
.addresses-page .mt-2 { margin-top: 0.5rem; }
.addresses-page .d-flex { display: flex; }
.addresses-page .justify-content-between { justify-content: space-between; }
.addresses-page .align-items-center { align-items: center; }
.addresses-page .shadow { box-shadow: var(--shadow-md); }
.addresses-page .bg-white { background: #fff; }
.addresses-page .text-primary { color: var(--primary); }
.addresses-page .text-muted { color: var(--gray-500); font-size: 0.8125rem; }
.addresses-page .me-2 { margin-right: 0.5rem; }
.addresses-page .me-1 { margin-right: 0.25rem; }

.addresses-page .card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.addresses-page .card-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    background: #fff;
}

.addresses-page .card-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
}

.addresses-page .card-body {
    padding: 1.5rem;
    background: #fff;
}

.addresses-page .alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.addresses-page .alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.addresses-page .alert-danger {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: var(--error);
}

.addresses-page .alert-danger ul { margin: 0; padding-left: 1.25rem; }

.addresses-page .alert-info {
    background: rgba(0, 212, 212, 0.08);
    border: 1px solid rgba(0, 212, 212, 0.2);
    color: var(--primary);
}

.addresses-page .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
}

.addresses-page .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #009999 100%);
}

.addresses-page .btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.addresses-page .btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

.addresses-page .btn-outline-danger {
    background: transparent;
    color: var(--error);
    border: 1px solid var(--error);
}

.addresses-page .btn-outline-danger:hover {
    background: var(--error);
    color: #fff;
}

.addresses-page .btn-sm { padding: 0.375rem 0.75rem; font-size: 0.875rem; }

.addresses-page .address-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1rem 1.25rem;
    height: 100%;
    background: #fff;
    transition: box-shadow var(--transition-fast);
}

.addresses-page .address-card:hover {
    box-shadow: var(--shadow-sm);
}

.addresses-page .address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.addresses-page .address-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.addresses-page .address-content {
    margin-bottom: 1rem;
}

.addresses-page .address-content p {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.addresses-page .address-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.addresses-page .badge.bg-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
}

.addresses-page .address-note {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

@media (max-width: 991px) {
    .addresses-page .col-lg-3,
    .addresses-page .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .addresses-page .col-md-6,
    .wishlist-page .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .addresses-page .card-header.d-flex.justify-content-between,
    .wishlist-page .card-header.d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* ============================================================
   ŞİFRE DEĞİŞTİR SAYFASI (change-password-page) - Kurumsal tasarım
   ============================================================ */
.change-password-page {
    background: #fff;
    min-height: 60vh;
}

.change-password-page.container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.change-password-page .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.change-password-page .row > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.change-password-page .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
.change-password-page .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
.change-password-page .py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.change-password-page .mb-4 { margin-bottom: 1.5rem; }
.change-password-page .mb-3 { margin-bottom: 1rem; }
.change-password-page .mb-0 { margin-bottom: 0; }
.change-password-page .mt-4 { margin-top: 1.5rem; }
.change-password-page .d-flex { display: flex; }
.change-password-page .justify-content-end { justify-content: flex-end; }
.change-password-page .align-items-center { align-items: center; }
.change-password-page .shadow { box-shadow: var(--shadow-md); }
.change-password-page .bg-white { background: #fff; }
.change-password-page .text-primary { color: var(--primary); }
.change-password-page .text-muted { color: var(--gray-500); font-size: 0.8125rem; }
.change-password-page .me-2 { margin-right: 0.5rem; }

.change-password-page .card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.change-password-page .card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    background: #fff;
}

.change-password-page .card-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
}

.change-password-page .card-body {
    padding: 1.5rem;
    background: #fff;
}

.change-password-page .alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.change-password-page .alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.change-password-page .alert-danger {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: var(--error);
}

.change-password-page .alert-danger ul { margin: 0; padding-left: 1.25rem; }

.change-password-page .form-control {
    display: block;
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
}

.change-password-page .form-control:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 212, 0.15);
}

.change-password-page .form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.375rem;
}

.change-password-page .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
}

.change-password-page .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #009999 100%);
}

.change-password-page .card-body ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--gray-700);
}

.change-password-page .card-body ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .change-password-page .col-lg-3,
    .change-password-page .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ============================================================
   FAVORİLER (wishlist-page) - addresses.php ile aynı layout/responsive (320px dahil)
   ============================================================ */
/* Layout: addresses-page ile birebir aynı */
.wishlist-page {
    background: #fff;
    min-height: 60vh;
}
.wishlist-page.container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.wishlist-page .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}
.wishlist-page .row > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.wishlist-page .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
.wishlist-page .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
.wishlist-page .mb-4 { margin-bottom: 1.5rem; }

@media (max-width: 991px) {
    .wishlist-page .col-lg-3,
    .wishlist-page .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .addresses-page .col-lg-3,
    .wishlist-page .col-lg-3 {
        min-width: 260px;
    }
}

@media (max-width: 320px) {
    .addresses-page.container,
    .wishlist-page.container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .addresses-page .row > [class*="col-"],
    .wishlist-page .row > [class*="col-"] {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* İçerik stilleri (kart, butonlar, ürün grid) */
.wishlist-page .card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.wishlist-page .card-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    background: #fff;
}

.wishlist-page .card-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
}

.wishlist-page .card-body {
    padding: 1.5rem;
    background: #fff;
}

/* Card içinde .category-page sadece grid stilini miras alsın, ekstra padding/background olmasın (addresses ile aynı görünüm) */
.wishlist-page .card-body .category-page {
    padding: 0;
    min-height: 0;
    background: transparent;
}

.wishlist-page .btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
}

.wishlist-page .btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

/* Wishlist içindeki .category-page ile grid/kart boyutu kategori sayfası ile aynı */
.wishlist-page .category-page .product-card .remove-from-wishlist:hover {
    background: var(--error) !important;
    color: #fff !important;
}

.wishlist-page .category-page .product-card .product-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.wishlist-page .category-page .product-card .btn-add-cart {
    flex: 1;
    min-width: 0;
    padding: 0.5rem 0.75rem;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.wishlist-page .category-page .product-card .btn-add-cart:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #009999 100%);
}

.wishlist-page .category-page .product-card .btn-quick-buy {
    padding: 0.5rem 0.75rem;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    background: var(--gray-100);
    color: var(--gray-800);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.wishlist-page .category-page .product-card .btn-quick-buy:hover {
    background: var(--primary);
    color: #fff;
}

.wishlist-page .category-page .product-card .product-out-of-stock {
    margin-top: 8px;
    font-size: 13px;
    color: var(--error);
    font-weight: 500;
}

.wishlist-page .text-center.p-4 .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
}

.wishlist-page .text-center.p-4 .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #009999 100%);
    color: #fff;
}

.wishlist-page .pagination-container .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.wishlist-page .pagination .page-item .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: #fff;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
}

.wishlist-page .pagination .page-item .page-link:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--primary);
}

.wishlist-page .pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

@media (max-width: 576px) {
    .wishlist-page .category-page .product-card .product-card-actions {
        flex-direction: column;
    }
    .wishlist-page .category-page .product-card .btn-add-cart,
    .wishlist-page .category-page .product-card .btn-quick-buy {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   SİPARİŞ DETAY SAYFASI (order-details-page) - Kurumsal tasarım
   ============================================================ */
.order-details-page {
    background: #fff;
    min-height: 60vh;
}

.order-details-page.container {
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}

/* Masaüstü: içerik ortada, sola yatık görünmesin */
.order-details-page .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.order-details-page .row > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (min-width: 992px) {
    .order-details-page .row > .col-12 {
        max-width: 960px;
        flex: 0 0 100%;
    }
}

.order-details-page .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
.order-details-page .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
.order-details-page .col-md-6 { flex: 0 0 50%; max-width: 50%; }
.order-details-page .col-md-12 { flex: 0 0 100%; max-width: 100%; }
.order-details-page .py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.order-details-page .mb-4 { margin-bottom: 1.5rem; }
.order-details-page .mb-0 { margin-bottom: 0; }
.order-details-page .mb-1 { margin-bottom: 0.25rem; }
.order-details-page .mb-2 { margin-bottom: 0.5rem; }
.order-details-page .mt-3 { margin-top: 1rem; }
.order-details-page .mt-4 { margin-top: 1.5rem; }
.order-details-page .d-flex { display: flex; }
.order-details-page .justify-content-between { justify-content: space-between; }
.order-details-page .align-items-center { align-items: center; }
.order-details-page .text-end { text-align: right; }
.order-details-page .text-center { text-align: center; }
.order-details-page .text-md-end { text-align: right; }
.order-details-page .shadow { box-shadow: var(--shadow-md); }
.order-details-page .bg-white { background: #fff; }
.order-details-page .text-primary { color: var(--primary); }
.order-details-page .text-muted { color: var(--gray-500); }
.order-details-page .text-danger { color: var(--error); }
.order-details-page .me-1 { margin-right: 0.25rem; }
.order-details-page .me-2 { margin-right: 0.5rem; }
.order-details-page .ms-2 { margin-left: 0.5rem; }
.order-details-page .p-0 { padding: 0; }
.order-details-page .p-2 { padding: 0.5rem; }

/* Geri dön linki (sidebar kaldırıldı, tek sütun) */
.order-details-page .order-details-back-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}
.order-details-page .order-details-back-link:hover {
    color: var(--primary-dark);
}

/* Sayfa başlığı */
.order-details-page .order-header .order-title,
.order-details-page .col-lg-9 > .d-flex.mb-4 h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

/* Kartlar */
.order-details-page .card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.order-details-page .card-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    background: #fff;
}

.order-details-page .card-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.order-details-page .card-header .text-primary { color: var(--primary) !important; }
.order-details-page .card-body { padding: 1.25rem 1.5rem; background: #fff; }
.order-details-page .card-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--gray-200);
    background: #fff;
}

/* Badge (durum) */
.order-details-page .badge {
    padding: 0.4rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.order-details-page .badge.bg-warning { background: var(--warning) !important; color: #fff !important; }
.order-details-page .badge.bg-info { background: var(--info) !important; color: #fff !important; }
.order-details-page .badge.bg-success { background: var(--success) !important; color: #fff !important; }
.order-details-page .badge.bg-danger { background: var(--error) !important; color: #fff !important; }
.order-details-page .badge.bg-dark { background: var(--gray-800) !important; color: #fff !important; }
.order-details-page .badge.bg-secondary { background: var(--gray-500) !important; color: #fff !important; }

/* Butonlar */
.order-details-page .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.order-details-page .btn-outline-secondary {
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-400);
}

.order-details-page .btn-outline-secondary:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

.order-details-page .btn-outline-danger {
    background: transparent;
    color: var(--error);
    border: 1px solid var(--error);
}

.order-details-page .btn-outline-danger:hover {
    background: var(--error);
    color: #fff;
}

.order-details-page .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
}

.order-details-page .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #009999 100%);
}

.order-details-page .btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
}

/* Ürün tablosu */
.order-details-page .table-responsive { overflow-x: auto; }
.order-details-page .table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.order-details-page .table thead th {
    font-weight: 600;
    padding: 1rem 1rem;
    text-align: left;
    border-bottom: 2px solid var(--gray-200);
    color: var(--gray-700);
    background: var(--gray-50);
}

.order-details-page .table thead th.text-center { text-align: center; }
.order-details-page .table thead th.text-end { text-align: right; }
.order-details-page .table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
}

.order-details-page .table tbody tr:last-child td { border-bottom: none; }
.order-details-page .table tbody tr:hover { background: var(--gray-50); }
.order-details-page .table .align-middle { vertical-align: middle; }

.order-details-page .product-thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.order-details-page .product-thumbnail-placeholder {
    width: 70px;
    height: 70px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
}

.order-details-page .product-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--gray-900);
    line-height: 1.4;
}

.order-details-page .variant-badge .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: var(--gray-200) !important;
    color: var(--gray-700) !important;
}

.order-details-page .variant-details {
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.order-details-page .product-sku,
.order-details-page .product-stock {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.order-details-page .price-value,
.order-details-page .total-value {
    font-weight: 600;
    color: var(--gray-900);
}

.order-details-page .total-value { font-size: 1rem; }
.order-details-page .quantity-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    border-radius: var(--radius-full);
}

/* Toplam tablosu */
.order-details-page .totals-table {
    width: 100%;
    font-size: 0.9375rem;
}

.order-details-page .totals-table td {
    padding: 0.5rem 0;
    border: none;
}

.order-details-page .totals-table .total-row td {
    padding: 0.75rem 0;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    border-top: 2px solid var(--gray-200);
}

.order-details-page .order-summary {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    max-width: 280px;
    margin-left: auto;
}

/* Sipariş notu */
.order-details-page .order-notes {
    background: var(--gray-50);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.order-details-page .notes-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.order-details-page .notes-content {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* Teslimat adresi kartı - tek blok: isim, adres, numara, posta (profesyonel düzen) */
.order-details-page .card-body.address-card {
    background: #fff;
    padding: 1.5rem 1.75rem;
}

.order-details-page .address-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.order-details-page .address-container .customer-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.order-details-page .address-container .address-line {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 0.2rem;
}

.order-details-page .address-container .address-line:last-of-type {
    margin-bottom: 0.75rem;
}

.order-details-page .address-container .contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-800);
    margin-bottom: 0.4rem;
}

.order-details-page .address-container .contact-info:last-of-type {
    margin-bottom: 0;
}

.order-details-page .address-container .contact-info i {
    color: var(--gray-500);
    width: 1.1rem;
    text-align: center;
}

.order-details-page .address-container .address-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.order-details-page .address-container .address-note i {
    color: var(--gray-500);
    margin-right: 0.25rem;
}

.order-details-page .no-address-info {
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.08);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.order-details-page .tracking-number {
    font-weight: 600;
    font-family: monospace;
}

.order-details-page .mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }

/* Sipariş detay responsive */
@media (max-width: 768px) {
    .order-details-page .col-md-6 { flex: 0 0 100%; max-width: 100%; }
    .order-details-page .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .order-details-page .product-thumbnail,
    .order-details-page .product-thumbnail-placeholder {
        width: 56px;
        height: 56px;
    }
    .order-details-page .order-summary {
        max-width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }
    .order-details-page .text-md-end { text-align: left; }
}

@media (max-width: 576px) {
    .order-details-page .table th,
    .order-details-page .table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8125rem;
    }
    .order-details-page .product-name { font-size: 0.875rem; }
}

.profile-page .profile-user-sidebar,
.orders-page .profile-user-sidebar,
.order-details-page .profile-user-sidebar,
.addresses-page .profile-user-sidebar,
.change-password-page .profile-user-sidebar,
.wishlist-page .profile-user-sidebar {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    min-width: 260px; /* Metin kesilmesini önler (Profilim, Siparişlerim, Favorilerim vb.) */
}

.profile-page .profile-user-sidebar .user-sidebar-header,
.orders-page .profile-user-sidebar .user-sidebar-header,
.order-details-page .profile-user-sidebar .user-sidebar-header,
.addresses-page .profile-user-sidebar .user-sidebar-header,
.change-password-page .profile-user-sidebar .user-sidebar-header,
.wishlist-page .profile-user-sidebar .user-sidebar-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.profile-page .profile-user-sidebar .user-avatar,
.orders-page .profile-user-sidebar .user-avatar,
.order-details-page .profile-user-sidebar .user-avatar,
.addresses-page .profile-user-sidebar .user-avatar,
.change-password-page .profile-user-sidebar .user-avatar,
.wishlist-page .profile-user-sidebar .user-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--gray-200);
}

.profile-page .profile-user-sidebar .user-avatar img,
.orders-page .profile-user-sidebar .user-avatar img,
.order-details-page .profile-user-sidebar .user-avatar img,
.addresses-page .profile-user-sidebar .user-avatar img,
.change-password-page .profile-user-sidebar .user-avatar img,
.wishlist-page .profile-user-sidebar .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-page .profile-user-sidebar .user-placeholder,
.orders-page .profile-user-sidebar .user-placeholder,
.order-details-page .profile-user-sidebar .user-placeholder,
.addresses-page .profile-user-sidebar .user-placeholder,
.change-password-page .profile-user-sidebar .user-placeholder,
.wishlist-page .profile-user-sidebar .user-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    border: none;
    margin: 0;
    padding: 0;
}

.profile-page .profile-user-sidebar .user-info h3,
.orders-page .profile-user-sidebar .user-info h3,
.order-details-page .profile-user-sidebar .user-info h3,
.addresses-page .profile-user-sidebar .user-info h3,
.change-password-page .profile-user-sidebar .user-info h3,
.wishlist-page .profile-user-sidebar .user-info h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.25rem 0;
}

.profile-page .profile-user-sidebar .user-info p,
.orders-page .profile-user-sidebar .user-info p,
.order-details-page .profile-user-sidebar .user-info p,
.addresses-page .profile-user-sidebar .user-info p,
.change-password-page .profile-user-sidebar .user-info p,
.wishlist-page .profile-user-sidebar .user-info p {
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin: 0;
}

.profile-page .profile-user-sidebar .user-nav,
.orders-page .profile-user-sidebar .user-nav,
.order-details-page .profile-user-sidebar .user-nav,
.addresses-page .profile-user-sidebar .user-nav,
.change-password-page .profile-user-sidebar .user-nav,
.wishlist-page .profile-user-sidebar .user-nav {
    padding: 0;
}

.profile-page .profile-user-sidebar .user-nav-item,
.orders-page .profile-user-sidebar .user-nav-item,
.order-details-page .profile-user-sidebar .user-nav-item,
.addresses-page .profile-user-sidebar .user-nav-item,
.change-password-page .profile-user-sidebar .user-nav-item,
.wishlist-page .profile-user-sidebar .user-nav-item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-page .profile-user-sidebar .user-nav-item li,
.orders-page .profile-user-sidebar .user-nav-item li,
.order-details-page .profile-user-sidebar .user-nav-item li,
.addresses-page .profile-user-sidebar .user-nav-item li,
.change-password-page .profile-user-sidebar .user-nav-item li,
.wishlist-page .profile-user-sidebar .user-nav-item li {
    margin: 0;
    border-bottom: 1px solid var(--gray-100);
}

.profile-page .profile-user-sidebar .user-nav-item li:last-of-type,
.orders-page .profile-user-sidebar .user-nav-item li:last-of-type,
.order-details-page .profile-user-sidebar .user-nav-item li:last-of-type,
.addresses-page .profile-user-sidebar .user-nav-item li:last-of-type,
.change-password-page .profile-user-sidebar .user-nav-item li:last-of-type,
.wishlist-page .profile-user-sidebar .user-nav-item li:last-of-type {
    border-bottom: none;
}

.profile-page .profile-user-sidebar .user-nav-link,
.orders-page .profile-user-sidebar .user-nav-link,
.order-details-page .profile-user-sidebar .user-nav-link,
.addresses-page .profile-user-sidebar .user-nav-link,
.change-password-page .profile-user-sidebar .user-nav-link,
.wishlist-page .profile-user-sidebar .user-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.profile-page .profile-user-sidebar .user-nav-link:hover,
.orders-page .profile-user-sidebar .user-nav-link:hover,
.order-details-page .profile-user-sidebar .user-nav-link:hover,
.addresses-page .profile-user-sidebar .user-nav-link:hover,
.change-password-page .profile-user-sidebar .user-nav-link:hover,
.wishlist-page .profile-user-sidebar .user-nav-link:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.profile-page .profile-user-sidebar .user-nav-link.active,
.orders-page .profile-user-sidebar .user-nav-link.active,
.order-details-page .profile-user-sidebar .user-nav-link.active,
.addresses-page .profile-user-sidebar .user-nav-link.active,
.change-password-page .profile-user-sidebar .user-nav-link.active,
.wishlist-page .profile-user-sidebar .user-nav-link.active {
    background: rgba(0, 212, 212, 0.08);
    color: var(--primary);
    font-weight: 600;
}

.profile-page .profile-user-sidebar .user-logout,
.orders-page .profile-user-sidebar .user-logout,
.order-details-page .profile-user-sidebar .user-logout,
.addresses-page .profile-user-sidebar .user-logout,
.change-password-page .profile-user-sidebar .user-logout,
.wishlist-page .profile-user-sidebar .user-logout {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--gray-200);
}

.profile-page .profile-user-sidebar .logout-btn,
.orders-page .profile-user-sidebar .logout-btn,
.order-details-page .profile-user-sidebar .logout-btn,
.addresses-page .profile-user-sidebar .logout-btn,
.change-password-page .profile-user-sidebar .logout-btn,
.wishlist-page .profile-user-sidebar .logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.profile-page .profile-user-sidebar .logout-btn:hover,
.orders-page .profile-user-sidebar .logout-btn:hover,
.order-details-page .profile-user-sidebar .logout-btn:hover,
.addresses-page .profile-user-sidebar .logout-btn:hover,
.change-password-page .profile-user-sidebar .logout-btn:hover,
.wishlist-page .profile-user-sidebar .logout-btn:hover {
    color: var(--error);
}

/* Profil kartları */
.profile-page .card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.profile-page .card-header {
    padding: 1rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    font-weight: 600;
    color: var(--gray-900);
}

.profile-page .card-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.profile-page .card-header .text-primary,
.profile-page .card-header i.text-primary {
    color: var(--primary) !important;
}

.profile-page .card-body {
    padding: 1.5rem;
    background: #fff;
}

/* Profil fotoğrafı */
.profile-page .profile-photo-container {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 3px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.profile-page .profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-page .default-avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    border: none;
    margin: 0;
    padding: 0;
    border-radius: 50%;
}

.profile-page .avatar-initials {
    font-family: inherit;
    letter-spacing: 1px;
}

.profile-page .profile-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.profile-page .profile-photo-overlay i {
    color: var(--white);
    font-size: 1.75rem;
}

.profile-page .profile-photo-container:hover .profile-photo-overlay {
    opacity: 1;
}

.profile-page .profile-photo-container:hover .profile-photo,
.profile-page .profile-photo-container:hover .default-avatar {
    transform: scale(1.03);
}

/* Form stilleri */
.profile-page .form-label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.profile-page .input-group {
    display: flex;
    align-items: stretch;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.profile-page .input-group-text {
    display: flex;
    align-items: center;
    padding: 0.625rem 0.875rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-300);
    border-right: none;
    color: var(--gray-500);
    font-size: 0.9375rem;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.profile-page .input-group .form-control {
    border: 1px solid var(--gray-300);
    border-left: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    flex: 1;
    min-width: 0;
}

.profile-page .input-group .form-control:focus {
    box-shadow: 0 0 0 3px rgba(0, 212, 212, 0.15);
    border-color: var(--primary);
}

.profile-page .input-group-text i {
    width: 18px;
    text-align: center;
}

.profile-page .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.profile-page .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #009999 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.profile-page .btn-danger {
    background: var(--error);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.profile-page .alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
}

.profile-page .alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--success);
    color: #065f46;
}

.profile-page .alert-danger {
    background: rgba(239, 68, 68, 0.08);
    border-color: var(--error);
    color: #991b1b;
}

.profile-page .alert ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.profile-page .alert ul li {
    margin-bottom: 0.25rem;
}

.profile-page .alert ul li:last-child {
    margin-bottom: 0;
}

/* Modal - Bootstrap JS ile uyumlu (Bootstrap CSS yok) */
body.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    display: none;
    padding: 1rem;
    box-sizing: border-box;
}

.modal.fade {
    transition: opacity 0.15s linear;
}

.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 1;
}

.modal-dialog {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    pointer-events: none;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 2rem);
}

.modal.show .modal-dialog {
    pointer-events: auto;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-200);
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    background: #fff;
}

.modal-header.bg-danger {
    background: var(--error) !important;
    border-bottom-color: rgba(255,255,255,0.2);
}

.modal-header.bg-danger .modal-title,
.modal-header.bg-danger .text-white {
    color: #fff !important;
}

.modal-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1.25rem 1.25rem;
    background: #fff;
    color: var(--gray-900);
}

.modal-body .alert {
    margin-bottom: 1rem;
}

.modal-body .alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--error);
    color: #991b1b;
}

.modal-body p,
.modal-body ul {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.modal-body ul {
    padding-left: 1.25rem;
}

.modal-body .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
}

.modal-body .form-control {
    display: block;
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    background: #fff;
}

.modal-body .form-control:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 212, 0.15);
}

.modal-body .mt-4 {
    margin-top: 1.5rem;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--gray-200);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    background: #fff;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: var(--radius-md);
    opacity: 0.6;
    cursor: pointer;
}

.btn-close:hover {
    opacity: 1;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-header .btn-close {
    margin: -0.25rem -0.25rem -0.25rem auto;
}

.btn-secondary {
    background: var(--gray-500);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--gray-600);
}

.btn-secondary:disabled,
.btn-danger:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.profile-page .form-control[type="file"]::-webkit-file-upload-button {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 0.375rem 0.75rem;
    color: var(--gray-700);
}

/* Hesap silme kartı */
.profile-page .card.border-danger .card-header {
    background: var(--error) !important;
    color: #fff !important;
    border-bottom-color: rgba(255,255,255,0.2);
}

.profile-page .card.border-danger .card-header h5,
.profile-page .card.border-danger .card-header .text-white {
    color: #fff !important;
}

.profile-page .card.border-danger .card-body {
    background: #fff;
}

/* Responsive profil */
@media (max-width: 768px) {
    .profile-page .profile-photo-container {
        width: 120px;
        height: 120px;
    }
    .profile-page .default-avatar {
        font-size: 2rem;
    }
    .profile-page .card-body .row {
        text-align: center;
    }
    .profile-page #buttonContainer {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .profile-page .profile-photo-container {
        width: 100px;
        height: 100px;
    }
    .profile-page .default-avatar {
        font-size: 1.75rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        display: none;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
    }
    
    .search-container {
        order: 2;
        flex-basis: 100%;
        width: 100%;
        max-width: none;
        min-width: 0;
        margin-top: 0.5rem;
        display: flex !important;
        justify-content: stretch !important;
    }
    
    .search-container .search-form {
        width: 100%;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 2rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    /* Logo ve ilk sütun ortada */
    .footer-content .footer-column:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-content .footer-column:first-child .footer-logo {
        justify-content: center;
    }
    .footer-content .footer-column:first-child .footer-description {
        text-align: center;
    }

    .footer-content .footer-column:first-child .social-links {
        justify-content: center;
    }

    /* Diğer sütunlar soldan boşlukla sola yaslı */
    .social-links {
        justify-content: flex-start;
    }

    /* Başlık okları kenara yapışmasın */
    .footer-column h3 {
        position: relative;
        padding-right: 2.25rem;
    }
    .footer-column h3 .fa-chevron-down,
    .footer-column h3 .toggle-icon {
        position: absolute !important;
        right: 0.75rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    /* Güvenli Ödeme ve banka logoları ortada */
    .footer-secure-payment {
        text-align: center;
    }
    .footer-secure-payment .footer-payment-logos,
    .footer-secure-payment > div {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading States */
.loading {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top-color: currentColor;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }

/* Story Modal Overlay - Instagram tarzı */
#storyOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    align-items: center;
    justify-content: center;
}
#storyOverlay.story-overlay-hidden {
    display: none !important;
}
#storyOverlay.story-overlay-visible {
    display: flex !important;
}
.story-modal-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.story-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 1000000;
    line-height: 1;
    padding: 10px;
}
.story-close-btn:hover {
    color: #00d4d4;
}
.story-content-wrapper {
    text-align: center;
    width: 100%;
}
.story-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.story-media {
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}
.story-media img,
.story-media video {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
}

/* ============================================================
   KATEGORİ SAYFASI STİLLERİ
   ============================================================ */

/* Kategori Sayfası Renk Değişkenleri */
.category-page {
    --cat-primary: #0079a9;
    --cat-primary-dark: #006a94;
    --cat-primary-light: #0099d6;
}

/* Ana Container - yatay scrollbar engelle (desktop filtre hover) */
.category-page {
    background: #ffffff;
    padding: 30px 0 60px;
    min-height: calc(100vh - 200px);
    overflow-x: hidden;
}

.category-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Flexbox Layout */
.category-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    min-width: 0;
}

/* Sidebar */
.category-sidebar {
    width: 280px;
    flex-shrink: 0;
    min-width: 0;
}

/* İçerik Alanı */
.category-content {
    flex: 1;
    min-width: 0;
}

/* Mobil Filtre Wrapper */
.mobile-filter-wrapper {
    display: none;
    margin-bottom: 20px;
}

/* Filter Sidebar - desktop: taşma yok, yatay scrollbar çıkmasın */
.category-page .filter-sidebar {
    background-color: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
    overflow-x: hidden;
    max-width: 100%;
}

.category-page .filter-close-btn {
    display: none;
}

.category-page .filter-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
    border-bottom: 3px solid var(--cat-primary);
    padding-bottom: 15px;
}

.category-page .filter-section {
    margin-bottom: 18px;
    border-bottom: 1px solid #eef2f7;
    padding-bottom: 18px;
}

.category-page .filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.category-page .filter-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
    padding: 8px 0;
    transition: color 0.2s;
    margin: 0;
    background: none;
    border: none;
    width: 100%;
}

.category-page .filter-toggle:hover {
    color: var(--cat-primary);
}

.category-page .filter-toggle .toggle-icon {
    transition: transform 0.3s;
    font-size: 11px;
    color: #999;
}

.category-page .filter-section.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

.category-page .filter-section-content {
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 8px;
    padding-bottom: 12px;
    padding-right: 4px;
}

.category-page .filter-section-content::-webkit-scrollbar {
    width: 6px;
}

.category-page .filter-section-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
    margin: 4px 0;
}

.category-page .filter-section-content::-webkit-scrollbar-thumb {
    background: var(--cat-primary);
    border-radius: 6px;
}

.category-page .filter-section-content::-webkit-scrollbar-thumb:hover {
    background: var(--cat-primary-dark);
}

.category-page .filter-section.collapsed .filter-section-content {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
}

.category-page .filter-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    margin-bottom: 6px;
    border-radius: 10px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
}

.category-page .filter-link:hover {
    background: linear-gradient(135deg, rgba(0, 121, 169, 0.08), rgba(0, 153, 214, 0.08));
    color: var(--cat-primary);
    text-decoration: none;
    border-color: rgba(0, 121, 169, 0.2);
    transform: translateX(4px);
}

.category-page .filter-link.active {
    background: linear-gradient(135deg, var(--cat-primary), var(--cat-primary-light));
    color: white;
    box-shadow: 0 4px 12px rgba(0, 121, 169, 0.3);
}

.category-page .filter-link .count {
    font-size: 11px;
    opacity: 0.7;
    background: rgba(0,0,0,0.05);
    padding: 2px 8px;
    border-radius: 10px;
}

.category-page .filter-link.active .count {
    background: rgba(255,255,255,0.2);
}

/* Color Filter */
.category-page .color-filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-page .color-filter-link {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.25s ease;
    border: 2px solid #eef2f7;
}

.category-page .color-filter-link:hover {
    border-color: var(--cat-primary);
    text-decoration: none;
    background: rgba(0, 121, 169, 0.05);
}

.category-page .color-filter-link.active {
    border-color: var(--cat-primary);
    background: linear-gradient(135deg, rgba(0, 121, 169, 0.1), rgba(0, 153, 214, 0.1));
}

.category-page .color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid rgba(0,0,0,0.1);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.category-page .color-name {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
}

.category-page .color-count {
    font-size: 11px;
    color: #718096;
    background: #eef2f7;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 600;
}

/* Price Filter */
.category-page .price-filter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-page .price-inputs-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-page .price-input-field {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #eef2f7;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s;
    background: #fafbfc;
    box-sizing: border-box;
}

.category-page .price-input-field:focus {
    outline: none;
    border-color: var(--cat-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 121, 169, 0.1);
}

.category-page .price-filter-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--cat-primary), var(--cat-primary-light));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.category-page .price-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 121, 169, 0.35);
    color: white;
    text-decoration: none;
}

/* Products Grid */
.category-page .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Kategori Sayfası Ürün Kartı - Anasayfadaki ile aynı */
.category-page .product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-page .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.category-page .product-card .product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #f8f9fa;
}

.category-page .product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-page .product-card:hover .product-image img {
    transform: scale(1.08);
}

.category-page .product-card .product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.category-page .product-card .product-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-color, #ff7e00), #ff9535);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 126, 0, 0.3);
}

.category-page .product-card .product-badge.sale {
    background: var(--cat-primary);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.category-page .product-card .product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.category-page .product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.category-page .product-card .action-btn-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    color: #333;
    text-decoration: none;
}

.category-page .product-card .action-btn-small:hover {
    background: var(--primary-color, #ff7e00);
    color: white;
    transform: scale(1.1);
}

.category-page .product-card .product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-page .product-card .product-category {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-page .product-card .product-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.4;
    flex: 0 0 auto;
}

.category-page .product-card .product-title a,
.category-page .product-card .product-title-link {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-page .product-card .product-title a:hover,
.category-page .product-card .product-title-link:hover {
    color: var(--cat-primary);
}

.category-page .product-card .product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.category-page .product-card .price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--cat-primary);
}

.category-page .product-card .price-original {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

@media (max-width: 1400px) {
    .category-page .products-grid { 
        grid-template-columns: repeat(4, 1fr); 
        gap: 18px;
    }
}

@media (max-width: 1200px) {
    .category-page .products-grid { 
        grid-template-columns: repeat(3, 1fr); 
        gap: 16px;
    }
}

@media (max-width: 991px) {
    .category-page .products-grid { 
        grid-template-columns: repeat(3, 1fr); 
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .category-page .products-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
    }
    
    .category-page .product-card .product-info {
        padding: 12px;
    }
    
    .category-page .product-card .product-title {
        font-size: 14px;
    }
    
    .category-page .product-card .price-current {
        font-size: 16px;
    }
    
    .category-page .product-card .price-bulk-only {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .category-page .products-grid { 
        grid-template-columns: repeat(1, 1fr); 
        gap: 10px;
    }
    
    .category-page .product-card .product-badges {
        top: 8px;
        left: 8px;
    }
    
    .category-page .product-card .product-badge {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .category-page .product-card .product-actions {
        top: 8px;
        right: 8px;
    }
    
    .category-page .product-card .action-btn-small {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* Sort Bar */
.category-page .sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.category-page .product-count {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 15px;
}

.category-page .product-count strong {
    color: var(--cat-primary);
}

.category-page .sort-select {
    padding: 12px 16px;
    border: 2px solid #eef2f7;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    min-width: 200px;
    background: #fafbfc;
    font-weight: 500;
    color: #4a5568;
    transition: all 0.2s;
}

.category-page .sort-select:focus {
    outline: none;
    border-color: var(--cat-primary);
    box-shadow: 0 0 0 3px rgba(0, 121, 169, 0.1);
}

/* Mobile Filter Button */
.category-page .mobile-filter-toggle {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--cat-primary), var(--cat-primary-light));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 121, 169, 0.3);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.category-page .mobile-filter-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 121, 169, 0.4);
}

/* Desktop görünüm - sidebar her zaman görünür, mobil panel kapalı */
@media (min-width: 992px) {
    .mobile-filter-wrapper {
        display: none !important;
    }
    
    .category-sidebar {
        display: block !important;
        position: static !important;
        transform: none !important;
        width: 280px !important;
        max-width: none !important;
        height: auto !important;
        overflow: visible !important;
        box-shadow: none !important;
    }
    
    .category-page .filter-close-btn {
        display: none !important;
    }
    
    .category-page .filter-sidebar {
        display: block !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        padding-top: 0 !important;
    }
}

/* Tablet ve Mobil görünüm - Filtreler açılır panel (responsive) */
@media (max-width: 991px) {
    .category-layout {
        flex-direction: column;
    }
    
    .category-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        max-width: 90vw;
        height: 100vh;
        z-index: 99999;
        background: #fff;
        overflow-y: auto;
        box-shadow: 4px 0 25px rgba(0,0,0,0.15);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-sidebar.filter-open {
        transform: translateX(0);
    }
    
    .mobile-filter-wrapper {
        display: block !important;
        margin-bottom: 20px;
    }
    
    .category-page .filter-sidebar {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        min-height: 100%;
        box-shadow: none;
        border-radius: 0;
        padding-top: 60px;
    }
    
    .category-page .filter-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 99998;
        backdrop-filter: blur(4px);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .category-page .filter-overlay.active {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }
    
    .category-page .filter-close-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
        border: none;
        background: #f1f5f9;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        color: #64748b;
        transition: all 0.2s;
        z-index: 10;
    }
    
    .category-page .filter-close-btn:hover {
        background: #e2e8f0;
        color: #1a1a2e;
    }
    
    .category-page .sort-bar {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .category-page .sort-select {
        width: 100%;
        min-width: auto;
    }
}

/* Breadcrumb */
.page-breadcrumb {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin: 0 12px;
    color: #94a3b8;
    font-size: 12px;
}

.breadcrumb-list a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-list a:hover {
    color: var(--primary-color, #ff7e00);
}

.breadcrumb-list li:last-child {
    color: var(--primary-color, #ff7e00);
    font-weight: 600;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding-bottom: 30px;
}

.category-page .pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-page .pagination li a,
.category-page .pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #4a5568;
    background: #fff;
    border: 2px solid #eef2f7;
    transition: all 0.25s ease;
    font-size: 14px;
}

.category-page .pagination li a:hover {
    border-color: var(--cat-primary);
    color: var(--cat-primary);
    transform: translateY(-2px);
}

.category-page .pagination li.active span {
    background: linear-gradient(135deg, var(--cat-primary), var(--cat-primary-light));
    border-color: var(--cat-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 121, 169, 0.3);
}

.category-page .pagination li.disabled span {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Empty State */
.category-page .empty-products {
    text-align: center;
    padding: 80px 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.category-page .empty-products i {
    font-size: 80px;
    color: #e2e8f0;
    margin-bottom: 25px;
    display: block;
}

.category-page .empty-products h3 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 700;
}

.category-page .empty-products p {
    color: #64748b;
    font-size: 15px;
    max-width: 400px;
    margin: 0 auto;
}

/* ============================================================
   KATEGORİ SAYFASI ÖZELLİKLER BÖLÜMÜ
   ============================================================ */

.category-features {
    background: #ffffff;
    padding: 40px 0 30px;
    margin-top: 30px;
}

.category-features .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-features .features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.category-features .feature-item {
    text-align: center;
    padding: 8px 5px;
    transition: transform 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-features .feature-item:hover {
    transform: translateY(-5px);
}

.category-features .feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 0;
    color: #6b7280;
    flex-shrink: 0;
}

.category-features .feature-icon i {
    font-size: 28px;
    color: #6b7280;
}

.category-features .feature-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.3;
    text-align: center;
}

.category-features .feature-description {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
    .category-features .features-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
}

/* Responsive - Mobil */
@media (max-width: 768px) {
    .category-features {
        padding: 30px 0;
    }
    
    .category-features .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }
    
    .category-features .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .category-features .feature-icon i {
        font-size: 32px;
    }
    
    .category-features .feature-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .category-features .feature-description {
        font-size: 13px;
    }
}

/* Responsive - Küçük Mobil */
@media (max-width: 480px) {
    .category-features .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Kategori Sayfası Newsletter - Kategori Renkleri */
.category-page + .newsletter {
    background: linear-gradient(135deg, var(--cat-primary) 0%, var(--cat-primary-dark) 100%);
}

.category-page + .newsletter .newsletter-btn {
    background: var(--secondary);
}

.category-page + .newsletter .newsletter-btn:hover {
    background: var(--secondary-light);
}

/* ============================================================
   İLETİŞİM SAYFASI - Sıfırdan profesyonel tasarım (banner yok)
   ============================================================ */

.contact-page {
    padding: 0 0 100px;
    background: #fff;
}

/* Minimal sayfa başlığı - banner yok */
.contact-hero {
    background: #fff;
    padding: 40px 0 48px;
    border-bottom: 1px solid var(--gray-200);
}

.contact-breadcrumb {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.contact-breadcrumb a {
    color: var(--cat-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-breadcrumb a:hover {
    color: var(--cat-primary-dark);
    text-decoration: underline;
}

.contact-breadcrumb .sep {
    margin: 0 8px;
    color: var(--gray-400);
}

.contact-breadcrumb .current {
    color: var(--gray-600);
}

.contact-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.contact-hero-desc {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Ana içerik */
.contact-main {
    padding-top: 56px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
}

/* Sol: İletişim bilgileri kartları */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cat-primary);
    display: inline-block;
}

.contact-page .info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.contact-page .info-item:hover {
    border-color: rgba(0, 121, 169, 0.2);
    box-shadow: 0 4px 12px rgba(0, 121, 169, 0.08);
}

.contact-page .info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gray-50);
    color: var(--cat-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-page .info-content h3 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    margin: 0 0 6px;
}

.contact-page .info-content p,
.contact-page .info-content a {
    color: var(--gray-800);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.contact-page .info-content a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-page .info-content a:hover {
    color: var(--cat-primary);
}

/* Çalışma saatleri */
.contact-page .working-hours {
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.contact-page .working-hours h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 16px;
}

.contact-page .hours-table {
    width: 100%;
    border-collapse: collapse;
}

.contact-page .hours-table tr {
    border-bottom: 1px solid var(--gray-100);
}

.contact-page .hours-table tr:last-child {
    border-bottom: none;
}

.contact-page .hours-table td {
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.contact-page .hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--gray-800);
}

/* Sosyal medya */
.contact-page .social-links {
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.contact-page .social-links h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 16px;
}

.contact-page .social-icons {
    display: flex;
    gap: 12px;
}

.contact-page .social-icon {
    width: 42px;
    height: 42px;
    background: var(--gray-50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-page .social-icon:hover {
    background: var(--cat-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Form kartı */
.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-form-container h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 28px;
}

.contact-page .contact-form .form-group {
    margin-bottom: 20px;
}

.contact-page .contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.contact-page .contact-form input,
.contact-page .contact-form textarea,
.contact-page .contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--gray-900);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus,
.contact-page .contact-form select:focus {
    border-color: var(--cat-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 121, 169, 0.1);
}

.contact-page .contact-form input::placeholder,
.contact-page .contact-form textarea::placeholder {
    color: var(--gray-400);
}

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

.contact-page .contact-form button {
    background: var(--cat-primary);
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
    transition: background 0.2s, transform 0.2s;
}

.contact-page .contact-form button:hover {
    background: var(--cat-primary-dark);
    transform: translateY(-1px);
}

.contact-page .contact-form .form-text {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 6px;
    line-height: 1.4;
}

/* Harita */
.contact-page .map-container {
    margin-top: 56px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-page .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Uyarı mesajları */
.contact-page .alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.9375rem;
    font-weight: 500;
}

.contact-page .alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.contact-page .alert-error {
    background: rgba(239, 68, 68, 0.08);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-hero {
        padding: 32px 0 40px;
    }
    .contact-hero-title {
        font-size: 1.75rem;
    }
    .contact-main {
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding-bottom: 60px;
    }
    .contact-hero-title {
        font-size: 1.5rem;
    }
    .contact-hero-desc {
        font-size: 1rem;
    }
    .contact-form-container {
        padding: 28px 24px;
    }
    .contact-page .map-container {
        margin-top: 40px;
        height: 320px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 24px 0 32px;
    }
    .contact-hero-title {
        font-size: 1.375rem;
    }
    .contact-page .info-item {
        padding: 16px;
    }
    .contact-page .info-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.125rem;
    }
    .contact-form-container {
        padding: 24px 20px;
    }
    .contact-page .map-container {
        height: 260px;
        margin-top: 32px;
    }
}

/* ============================================================
   HİZMETLER SAYFASI - Profesyonel tasarım (banner yok, contact ile uyumlu)
   ============================================================ */

.services-page {
    padding: 0 0 80px;
    background: #fff;
}

.services-hero {
    background: #fff;
    padding: 64px 0;
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
}

.services-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.services-hero-desc {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 0 auto;
    line-height: 1.6;
    max-width: 680px;
}

.services-main {
    padding-top: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--gray-100);
}

/* Intro: değer önerisi - profesyonel düzen */
.services-page .services-intro {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.services-intro-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 24px;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 16px;
}

.services-intro-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: var(--cat-primary);
    border-radius: 2px;
}

.services-intro-lead {
    font-size: 1.125rem;
    color: var(--gray-800);
    line-height: 1.7;
    margin: 0 0 20px;
    font-weight: 500;
}

.services-page .services-intro-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Ortak blok başlıkları - kurumsal çizgi */
.services-block-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.services-block-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: var(--cat-primary);
    border-radius: 2px;
}

.services-block-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.5;
}

/* Nasıl Alışveriş Yaparsınız */
.services-how {
    margin-bottom: 56px;
    padding-top: 56px;
    border-top: 1px solid var(--gray-100);
}

.services-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.services-step {
    position: relative;
    padding: 28px 20px;
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
    transition: box-shadow 0.25s ease, border-color 0.2s, transform 0.25s ease;
}

.services-step:hover {
    border-color: rgba(0, 121, 169, 0.25);
    box-shadow: 0 8px 24px rgba(0, 121, 169, 0.08);
    transform: translateY(-2px);
}

.services-step-num {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: var(--cat-primary);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(0, 121, 169, 0.08);
    color: var(--cat-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
}

.services-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 8px;
}

.services-step p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* Güven rozetleri */
.services-trust {
    margin-bottom: 0;
    padding-top: 56px;
    border-top: 1px solid var(--gray-100);
}

.services-trust-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 48px;
    padding: 32px 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.services-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.services-trust-item i {
    width: 40px;
    height: 40px;
    background: var(--cat-primary);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.services-page .service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.2s;
}

.services-page .service-card:hover {
    border-color: rgba(0, 121, 169, 0.15);
    box-shadow: 0 8px 24px rgba(0, 121, 169, 0.12);
    transform: translateY(-4px);
}

.services-page .service-image {
    height: 200px;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid var(--gray-100);
}

.services-page .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.services-page .service-card:hover .service-image img {
    transform: scale(1.05);
}

.services-page .service-content {
    padding: 24px;
}

.services-page .service-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 10px;
}

.services-page .service-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.55;
    margin: 0;
}

/* Neden Bizi Seçmelisiniz */
.services-why {
    background: #fff;
    padding: 72px 0;
    border-top: 1px solid var(--gray-100);
}

.services-why .services-block-title {
    margin-bottom: 8px;
}

.services-why .services-block-subtitle {
    margin-bottom: 40px;
}

.services-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.services-section-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 10px;
}

.services-section-title p {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.5;
}

.services-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.services-feature-item {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.2s;
}

.services-feature-item:hover {
    border-color: rgba(0, 121, 169, 0.2);
    box-shadow: 0 8px 24px rgba(0, 121, 169, 0.06);
    transform: translateY(-2px);
}

.services-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: var(--cat-primary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    flex-shrink: 0;
}

.services-feature-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 8px;
}

.services-feature-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.55;
    margin: 0;
}

/* Müşteri Yorumları */
.services-testimonials {
    padding: 72px 0;
    background: #fff;
    border-top: 1px solid var(--gray-100);
}

.services-testimonials .services-block-title {
    margin-bottom: 8px;
}

.services-testimonials .services-block-subtitle {
    margin-bottom: 40px;
}

.services-testimonials .services-section-title {
    margin-bottom: 40px;
}

.services-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.services-testimonial-item {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, border-color 0.2s;
}

.services-testimonial-item:hover {
    border-color: rgba(0, 121, 169, 0.2);
    box-shadow: 0 8px 24px rgba(0, 121, 169, 0.06);
}

.services-testimonial-content {
    flex: 1;
    margin-bottom: 20px;
    position: relative;
}

.services-testimonial-content::before {
    content: '\201C';
    font-size: 48px;
    color: var(--cat-primary);
    opacity: 0.2;
    position: absolute;
    top: -8px;
    left: 0;
    line-height: 1;
}

.services-testimonial-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    padding-left: 28px;
}

.services-testimonial-author {
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
}

.services-testimonial-author h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 4px;
}

.services-testimonial-author p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

/* CTA Bölümü */
.services-cta {
    background: var(--cat-primary);
    padding: 72px 0;
    text-align: center;
    color: #fff;
}

.services-cta-content {
    max-width: 720px;
    margin: 0 auto;
}

.services-cta-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 16px;
    color: #fff;
}

.services-cta-content p {
    font-size: 1.0625rem;
    margin: 0 0 28px;
    color: #fff;
    opacity: 0.95;
    line-height: 1.5;
}

.services-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.services-cta-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.services-cta-btn-white {
    background: #fff;
    color: var(--cat-primary);
}

.services-cta-btn-white:hover {
    background: var(--gray-50);
    color: var(--cat-primary-dark);
    transform: translateY(-2px);
}

.services-cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.services-cta-btn-outline:hover {
    background: #fff;
    color: var(--cat-primary);
    transform: translateY(-2px);
}

/* Hizmetler sayfası responsive */
@media (max-width: 992px) {
    .services-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-hero {
        padding: 48px 0;
    }
    .services-hero-title {
        font-size: 2rem;
        margin-bottom: 14px;
    }
    .services-hero-desc {
        font-size: 1.0625rem;
    }
    .services-main {
        padding-top: 40px;
    }
    .services-trust-inner {
        gap: 24px 32px;
        padding: 28px 20px;
    }
    .services-how {
        padding-top: 40px;
    }
    .services-trust {
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .services-page {
        padding-bottom: 56px;
    }
    .services-hero {
        padding: 40px 0;
    }
    .services-hero-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    .services-hero-desc {
        font-size: 1rem;
    }
    .services-page .services-intro {
        margin-bottom: 40px;
    }
    .services-page .services-intro {
        padding: 32px 24px;
    }
    .services-intro-title {
        font-size: 1.375rem;
        margin-bottom: 20px;
        padding-bottom: 14px;
    }
    .services-intro-lead {
        font-size: 1.0625rem;
        margin-bottom: 16px;
    }
    .services-how {
        margin-bottom: 40px;
        padding-top: 40px;
    }
    .services-steps {
        margin-top: 24px;
    }
    .services-trust {
        padding-top: 40px;
    }
    .services-trust-inner {
        gap: 20px;
        padding: 24px 16px;
    }
    .services-trust-item {
        font-size: 0.9375rem;
    }
    .services-block-title {
        font-size: 1.25rem;
    }
    .services-block-subtitle {
        margin-bottom: 32px;
        font-size: 0.9375rem;
    }
    .services-why,
    .services-testimonials {
        padding: 56px 0;
    }
    .services-cta {
        padding: 56px 0;
    }
    .services-cta-content h2 {
        font-size: 1.5rem;
    }
    .services-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .services-page .service-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .services-main {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .services-page .services-intro {
        padding: 28px 20px;
    }
    .services-intro-title {
        font-size: 1.25rem;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
    .services-intro-lead {
        font-size: 1rem;
        margin-bottom: 14px;
    }
    .services-page .services-intro-text {
        font-size: 0.9375rem;
    }
    .services-how {
        padding-top: 32px;
    }
    .services-trust {
        padding-top: 32px;
    }
    .services-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .services-step {
        padding: 24px 18px;
    }
    .services-trust-item {
        width: 100%;
        justify-content: center;
    }
    .services-grid,
    .services-features-grid,
    .services-testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .services-hero {
        padding: 32px 0;
    }
    .services-hero-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .services-hero-desc {
        font-size: 0.9375rem;
        padding: 0 16px;
    }
    .services-main {
        padding-top: 32px;
    }
    .services-page .service-content {
        padding: 20px;
    }
    .services-feature-item {
        padding: 24px 16px;
    }
    .services-feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }
    .services-testimonial-item {
        padding: 22px;
    }
    .services-cta-content {
        padding: 0 16px;
    }
    .services-cta-content h2 {
        font-size: 1.25rem;
    }
    .services-cta-content p {
        font-size: 1rem;
    }
    .services-cta-btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
}

/* ==========================================================================
   Register & Login Pages - Kurumsal Tasarım
   ========================================================================== */

.login-page {
    min-height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.25rem;
    position: relative;
}

.login-container {
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 1;
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    min-height: 640px;
    border: 1px solid var(--gray-200);
    align-items: stretch;
}

/* Sol panel - Marka & bilgi */
.login-image {
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem 2.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
}

.login-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 100% 0%, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.login-image-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 360px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.brand-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.login-brand-logo {
    max-width: 205px;
    max-height: 121px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.brand-icon {
    font-size: 2.25rem;
    color: var(--white);
    opacity: 0.95;
}

.login-image-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.login-image-divider {
    width: 48px;
    height: 2px;
    background: rgba(255,255,255,0.7);
    margin: 0 0 1.5rem 0;
    border-radius: 1px;
}

.welcome-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.92);
    font-weight: 400;
}

.login-features {
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.login-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.15);
    transition: background var(--transition-base), border-color var(--transition-base);
}

.login-feature-item:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.22);
}

.login-image .feature-icon,
.login-feature-item .feature-icon {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    min-height: 48px;
    background: rgba(255,255,255,0.2) !important;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.login-image .feature-icon i,
.login-feature-item .feature-icon i {
    font-size: 1.25rem !important;
    color: var(--white) !important;
}

.login-image .feature-content,
.login-feature-item .feature-content {
    flex: 1;
    min-width: 0;
}

.login-image .feature-content h4,
.login-feature-item .feature-content h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 0.25rem 0;
}

.login-image .feature-content p,
.login-feature-item .feature-content p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.feature-content p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.78);
    margin: 0;
}

.login-image-footer {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.875rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
}

.trust-badge-item i {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

/* Sağ panel - Form */
.login-form-container {
    padding: 3rem 2.5rem;
    padding-top: 4rem;
    overflow-y: auto;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.login-form-container .login-form {
    flex: 1;
}

.login-footer-fixed {
    margin-top: auto;
    padding-top: 1rem;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 0;
}

.login-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
    letter-spacing: -0.02em;
}

.login-header p {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

/* Form */
.login-form .form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

.login-form label {
    display: block;
    margin-bottom: 0.375rem;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.login-form .input-group {
    position: relative;
    width: 100%;
}

.login-form .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
    z-index: 1;
    pointer-events: none;
}

.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="tel"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--gray-800);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    background: var(--gray-50);
    font-family: inherit;
}

/* İkonlu formlarda (login/register sayfası) sol boşluk ikon için */
.login-form .input-group input[type="text"],
.login-form .input-group input[type="email"],
.login-form .input-group input[type="password"],
.login-form .input-group input[type="tel"] {
    padding-left: 2.75rem;
}

.login-form input::placeholder {
    color: var(--gray-400);
}

.login-form input:hover {
    border-color: var(--gray-300);
}

.login-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 212, 0.12);
    background: var(--white);
    outline: none;
}

.login-form input:focus ~ .input-icon {
    color: var(--primary);
}

.login-form .password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    cursor: pointer;
    transition: color var(--transition-fast);
    z-index: 2;
    font-size: 0.9375rem;
}

.login-form .password-toggle:hover {
    color: var(--gray-600);
}

.password-requirements,
.phone-format {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.375rem;
    line-height: 1.4;
}

.field-error {
    color: var(--error);
    font-size: 0.75rem;
    margin-top: 0.375rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.field-error::before {
    content: "⚠ ";
    margin-right: 0.25rem;
}

.login-form input.error {
    border-color: var(--error) !important;
    background: #fef2f2 !important;
}

.login-form input.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

.login-form input.error ~ .input-icon {
    color: var(--error) !important;
}

.register-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
}

.register-form-col .form-group {
    margin-bottom: 0;
}

.register-terms {
    margin-bottom: 1.25rem;
}

.register-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}

.register-checkbox-group input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.2rem;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.register-checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--gray-600);
    font-size: 0.8125rem;
    line-height: 1.5;
    cursor: pointer;
}

.register-checkbox-group label a,
.register-checkbox-group label a.terms-link {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
}

.register-checkbox-group label a:hover,
.register-checkbox-group label a.terms-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--gray-600);
    cursor: pointer;
    margin: 0;
    line-height: 1;
}

.checkbox-label input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: var(--primary);
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
    vertical-align: middle;
}

.checkbox-label .checkmark {
    display: none;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remember-me input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--primary);
    cursor: pointer;
}

.remember-me label {
    font-size: 0.8125rem;
    color: var(--gray-600);
    cursor: pointer;
    margin: 0;
}

.forgot-password {
    font-size: 0.8125rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.forgot-password:hover {
    color: var(--primary-dark);
}

/* Butonlar */
.login-button,
.register-button {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.login-button {
    background: var(--primary);
    color: var(--white);
    border: 1px solid transparent;
}

.login-button:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 212, 212, 0.25);
}

.register-button {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.register-button:hover {
    background: var(--primary);
    color: var(--white);
}

.login-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.login-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--gray-200);
}

.login-divider span {
    position: relative;
    background: var(--white);
    padding: 0 0.75rem;
    color: var(--gray-400);
    font-size: 0.8125rem;
    font-weight: 500;
}

.login-footer {
    text-align: center;
}

.login-footer p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

/* Uyarılar */
.login-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    border: 1px solid transparent;
}

.login-alert.error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

/* Sidebar giriş formu hata mesajı */
.sidebar-login-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Sidebar Login Form Checkbox Fix */
#sidebarLoginForm .checkbox-label input[type="checkbox"],
.offcanvas .checkbox-label input[type="checkbox"],
.sidebar .checkbox-label input[type="checkbox"] {
    width: 14px !important;
    height: 14px !important;
    opacity: 1 !important;
    position: relative !important;
    visibility: visible !important;
    appearance: checkbox !important;
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    display: inline-block !important;
    margin: 0 !important;
    margin-top: -1px !important;
    flex-shrink: 0;
    vertical-align: middle;
}

.login-alert.error i {
    color: var(--error);
    font-size: 1.125rem;
}

.login-alert.success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.login-alert.success i {
    color: var(--success);
    font-size: 1.125rem;
}

.login-alert ul {
    margin: 0;
    padding-left: 1.125rem;
}

.login-alert li {
    margin-bottom: 0.15rem;
}

/* Toast - header/nav üzerinde görünsün (body seviyesinde kullanılmalı) */
.toast {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--success);
    color: var(--white);
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 10050;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity var(--transition-base), transform var(--transition-base);
    max-width: 400px;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
}

.toast-icon {
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.toast-message {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
}

.toast-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.375rem 0.5rem;
    margin-left: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.toast-close:hover {
    background: rgba(255,255,255,0.3);
}

/* Kayıt başarı mesajı */
.registration-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.registration-success .success-icon i {
    font-size: 2rem;
    color: var(--success);
}

.registration-success .success-content h3 {
    color: #166534;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.registration-success .success-content p {
    color: #166534;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.email-verification-info {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: 1rem;
    border: 1px solid #bbf7d0;
}

.email-box {
    background: var(--gray-50);
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.email-box i {
    color: var(--success);
    margin-right: 0.5rem;
}

.verification-steps .step {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    color: #166534;
}

.step-number {
    background: var(--success);
    color: var(--white);
    width: 1.25rem;
    height: 1.25rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.warning-note {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: var(--radius-md);
    padding: 0.625rem 0.75rem;
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: #92400e;
}

.warning-note i {
    color: var(--warning);
    margin-right: 0.5rem;
}

/* Responsive - Register & Login */
@media (max-width: 992px) {
    .login-wrapper {
        grid-template-columns: 1fr;
    }
    .login-image {
        display: none;
    }
    .login-form-container {
        padding: 2rem 1.75rem;
    }
}

@media (max-width: 768px) {
    .login-page {
        padding: 1.25rem 1rem;
    }
    .login-form-container {
        padding: 1.5rem 1.25rem;
    }
    .login-header h1 {
        font-size: 1.375rem;
    }
    .register-form-row {
        grid-template-columns: 1fr;
    }
    .toast {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .login-form-container {
        padding: 1.25rem 1rem;
    }
    .login-header h1 {
        font-size: 1.25rem;
    }
    .login-button,
    .register-button {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   Sepet Sayfası - Kurumsal Tasarım
   ========================================================================== */

.premium-cart-container {
    background: #fff;
    padding: 2rem 0 4rem;
    min-height: 60vh;
}

.premium-cart-container .page-title-container {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.premium-cart-container .page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    letter-spacing: -0.02em;
}

/* Boş sepet */
.empty-cart-container {
    padding: 4rem 1.5rem;
    text-align: center;
}

.empty-cart {
    max-width: 420px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}

.empty-cart-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-cart-icon i {
    font-size: 2rem;
    color: var(--gray-500);
}

.empty-cart h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.empty-cart p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.empty-cart .btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.empty-cart .btn-premium:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 212, 212, 0.25);
    color: var(--white);
}

/* Sepet içeriği layout */
.premium-cart-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 992px) {
    .premium-cart-content {
        grid-template-columns: 1fr;
    }
}

/* Sepet tablosu */
.premium-cart-table {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cart-table-header {
    display: grid;
    grid-template-columns: 1fr 100px 140px 100px 56px;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cart-table-header .header-cell {
    min-width: 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr 100px 140px 100px 56px;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    align-items: center;
    border-bottom: 1px solid var(--gray-100);
    transition: background var(--transition-fast);
}

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

.cart-item:hover {
    background: var(--gray-50);
}

.cart-item .item-cell {
    min-width: 0;
}

/* Ürün hücresi */
.cart-item .product-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cart-item .product-image {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.cart-item .product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.cart-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item .product-details {
    min-width: 0;
}

.cart-item .product-title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    line-height: 1.35;
}

.cart-item .product-title a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.cart-item .product-title a:hover {
    color: var(--primary);
}

/* Varyant stilleri (sepet) */
.premium-cart-container .variant-properties-container {
    margin-top: 0.5rem;
}

.premium-cart-container .variant-properties-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.premium-cart-container .variant-properties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.premium-cart-container .variant-property {
    font-size: 0.75rem;
    background: var(--gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    display: inline-flex;
    align-items: center;
}

.premium-cart-container .property-name {
    font-weight: 600;
    color: var(--gray-600);
    margin-right: 0.25rem;
}

.premium-cart-container .property-value,
.premium-cart-container .property-color-value {
    color: var(--gray-700);
}

.premium-cart-container .color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.35rem;
    border: 1px solid var(--gray-300);
    display: inline-block;
}

/* Fiyat */
.cart-item .price-display {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-800);
}

.cart-item .current-price {
    display: block;
}

.cart-item .old-price {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--gray-400);
    text-decoration: line-through;
}

/* Miktar kontrolü */
.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    width: fit-content;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--gray-50);
    color: var(--gray-600);
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.quantity-btn:hover:not(:disabled) {
    background: var(--gray-200);
    color: var(--gray-800);
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-btn.plus {
    border-left: 1px solid var(--gray-200);
}

.quantity-btn.minus {
    border-right: 1px solid var(--gray-200);
}

.quantity-input {
    width: 44px;
    height: 36px;
    border: none;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-800);
    background: transparent;
    appearance: textfield;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Toplam & Sil */
.cart-item .total-display {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-900);
}

.remove-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-500);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.remove-btn:hover {
    background: #fef2f2;
    color: var(--error);
    border-color: #fecaca;
}

/* Sipariş özeti */
.order-summary {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: 1.5rem;
}

.order-summary .summary-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
}

.summary-line .summary-label {
    color: var(--gray-600);
}

.summary-line .summary-value {
    font-weight: 600;
    color: var(--gray-800);
}

.summary-line.total {
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 2px solid var(--gray-200);
}

.summary-line.total .summary-label {
    font-weight: 700;
    color: var(--gray-900);
}

.summary-line.total .total-price {
    font-size: 1.125rem;
    color: var(--gray-900);
}

.free-shipping {
    color: var(--success);
    font-weight: 600;
}

.free-shipping-notice {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    color: #166534;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.free-shipping-notice i {
    color: var(--success);
}

.shipping-notice {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shipping-notice i {
    color: var(--info);
}

/* Güvenli ödeme */
.secure-payment-info {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.secure-payment-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.secure-payment-header i {
    color: var(--success);
}

.payment-methods {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.payment-methods img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

/* Checkout aksiyonları */
.checkout-actions {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.continue-shopping {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.continue-shopping:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    color: var(--gray-800);
}

.checkout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.checkout-button:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 212, 212, 0.25);
    color: var(--white);
}

.login-notice {
    margin-top: 0.25rem;
}

.login-notice small {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Sepet responsive */
@media (max-width: 768px) {
    .cart-table-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto auto;
        gap: 0.75rem;
        padding: 1rem;
    }

    .cart-item .item-cell.product-column {
        grid-column: 1 / -1;
    }

    .cart-item .product-info {
        gap: 0.75rem;
    }

    .cart-item .product-image {
        width: 72px;
        height: 72px;
    }

    .cart-item .item-cell.price-column::before {
        content: attr(data-label);
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--gray-500);
        margin-bottom: 0.25rem;
    }

    .cart-item .item-cell.quantity-column {
        grid-column: 1;
    }

    .cart-item .item-cell.total-column {
        grid-column: 2;
        grid-row: 2;
        text-align: right;
    }

    .cart-item .item-cell.total-column::before {
        content: attr(data-label);
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--gray-500);
        margin-bottom: 0.25rem;
        display: block;
    }

    .cart-item .item-cell.action-column {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        justify-self: end;
    }

    .premium-cart-container .page-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .premium-cart-container {
        padding: 1.5rem 0 3rem;
    }

    .empty-cart {
        padding: 2rem 1.5rem;
    }

    .checkout-actions {
        flex-direction: column;
    }

    .continue-shopping,
    .checkout-button {
        width: 100%;
        justify-content: center;
    }
}

/* Toplu satın alım – iletişim butonları */
.bulk-only-contact .btn-bulk-contact:hover {
    background: #0d9488;
    color: #fff;
    border-color: #0d9488;
}
.bulk-only-contact .btn-bulk-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: #fff;
}
.bulk-only-contact .bulk-only-buttons a {
    text-transform: none;
    letter-spacing: normal;
}

/* İletişim kutusunun hemen altındaki varyant bölümüne üst boşluk */
.bulk-only-contact ~ .product-variants {
    margin-top: 1rem;
}
.bulk-only-contact ~ .product-variants:first-of-type {
    margin-top: 1.25rem;
}

/* Ürün detay varyant etiketi (Renk:, Ölçü: vb.) – Fiyat başlığı ile aynı düzende */
.product-variants .variant-label {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    display: block;
}

/* Kategori / liste sayfalarında toplu alım ürünü fiyat metni */
.price-bulk-only {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--cat-primary);
}
.product-card .product-price .price-bulk-only {
    font-size: 13px;
    font-weight: 700;
    color: var(--cat-primary);
}