/* ============================================
   Prestige - Premium CSS
   Modern, mobil öncelikli, şık tasarım
   ============================================ */

/* ===== CSS Değişkenler (Tema) ===== */
:root {
--primary: #CD5C5C;
--primary-hover: #b54a4a;
--primary-light: #fdf2f2;
--secondary: #4a4a4a;
--success: #10b981;
--danger: #ef4444;
--warning: #f59e0b;
--info: #06b6d4;
--dark: #1a1a1a;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --font-main: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
    --transition: all 0.2s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }

html {
    font-size: 15px;
    scroll-behavior: smooth;
}
@media (min-width: 768px) {
    html { font-size: 16px; }
}

body {
    font-family: var(--font-main);
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

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

img { max-width: 100%; height: auto; }

/* ===== Genel Butonlar ===== */
.btn-prestige {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary-prestige {
    background: linear-gradient(135deg, var(--primary), #a04444);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(205,92,92,0.3);
}
.btn-primary-prestige:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(205,92,92,0.4);
    color: var(--white);
}

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

.btn-white-prestige {
    background: var(--white);
    color: var(--gray-800);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.btn-white-prestige:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-danger-prestige {
    background: var(--danger);
    color: var(--white);
}
.btn-danger-prestige:hover {
    background: #dc2626;
    color: var(--white);
}

.btn-success-prestige {
    background: var(--success);
    color: var(--white);
}
.btn-success-prestige:hover { background: #059669; color: var(--white); }

.btn-sm { padding: 6px 16px; font-size: 0.82rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* ===== Kartlar ===== */
.card-prestige {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    overflow: hidden;
}
.card-prestige:hover {
    box-shadow: var(--shadow-md);
}
.card-prestige .card-body { padding: 1.5rem; }
.card-prestige .card-header-prestige {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== Form Elemanları ===== */
.form-prestige .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.form-prestige .form-control,
.form-prestige .form-select {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white);
}
.form-prestige .form-control:focus,
.form-prestige .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(205,92,92,0.1);
    outline: none;
}
.form-prestige .form-text {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== İstatistik Kartları ===== */
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.stat-card .stat-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.stat-card .stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}
.stat-card .stat-label {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ===== Tablo ===== */
.table-prestige {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.table-prestige thead th {
    background: var(--gray-50);
    padding: 12px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-200);
    text-align: left;
}
.table-prestige tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
    vertical-align: middle;
}
.table-prestige tbody tr:hover {
    background: var(--gray-50);
}

/* ===== Badge ===== */
.badge-prestige {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
}
.badge-success { background: #d1fae5; color: #065f46; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-info { background: #cffafe; color: #155e75; }
.badge-primary { background: var(--primary-light); color: var(--primary); }

/* ===== Landing Page ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1f1f 50%, #3d2828 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(205,92,92,0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(205,92,92,0.08) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.hero-title span {
    background: linear-gradient(135deg, #e8a0a0, #CD5C5C, #a04444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    line-height: 1.7;
}

/* Feature kartları */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.feature-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}
.feature-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

/* Fiyat kartları */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--gray-100);
    transition: var(--transition);
    text-align: center;
    position: relative;
    height: 100%;
}
.pricing-card:hover {
    box-shadow: var(--shadow-xl);
}
.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.03);
}
.pricing-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #a04444);
    color: white;
    padding: 4px 20px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}
.pricing-card .price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gray-900);
}
.pricing-card .price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-500);
}
.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
}
.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pricing-features li .check { color: var(--success); font-weight: bold; }
.pricing-features li .cross { color: var(--gray-300); }

/* ===== Navbar ===== */
.navbar-prestige {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}
.navbar-prestige .navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
}
.navbar-prestige .nav-link {
    font-weight: 500;
    color: var(--gray-600);
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.navbar-prestige .nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

/* ===== Auth Sayfaları ===== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1f1f 100%);
    padding: 2rem 1rem;
}
.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
}
.auth-card .auth-logo {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.auth-card .auth-logo img {
    display: inline-block;
}
.auth-card .auth-title {
    text-align: center;
    font-size: 1.15rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

/* ===== Panel Layout ===== */
.panel-layout {
    display: flex;
    min-height: 100vh;
}
.panel-sidebar {
    width: 260px;
    background: var(--white);
    border-right: 1px solid var(--gray-100);
    position: fixed;
    top: 0; left: 0; bottom: 0;
    overflow-y: auto;
    z-index: 1020;
    transition: transform 0.3s ease;
}
.panel-sidebar .sidebar-brand {
    padding: 1.25rem 1.5rem;
    font-weight: 800;
    font-size: 1.3rem;
    border-bottom: 1px solid var(--gray-100);
}
.panel-sidebar .sidebar-nav {
    padding: 1rem 0.75rem;
}
.panel-sidebar .sidebar-nav .nav-item {
    margin-bottom: 2px;
}
.panel-sidebar .sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
}
.panel-sidebar .sidebar-nav .nav-link:hover {
    background: var(--primary-light);
    color: var(--primary);
}
.panel-sidebar .sidebar-nav .nav-link.active {
    background: var(--primary);
    color: var(--white);
}
.panel-sidebar .sidebar-nav .nav-section {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    padding: 1rem 14px 6px;
}
.panel-main {
    flex: 1;
    margin-left: 260px;
    background: var(--gray-50);
    min-height: 100vh;
}
.panel-topbar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1010;
}
.panel-topbar .page-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}
.panel-content {
    padding: 1.5rem;
}

/* Sidebar mobil toggle */
.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--gray-700);
    cursor: pointer;
    padding: 4px;
}
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1015;
}

@media (max-width: 991.98px) {
    .panel-sidebar {
        transform: translateX(-100%);
    }
    .panel-sidebar.show {
        transform: translateX(0);
    }
    .sidebar-toggle {
        display: inline-flex;
    }
    .sidebar-overlay.show {
        display: block;
    }
    .panel-main {
        margin-left: 0;
    }
}

/* ===== Public Sayfa ===== */
.public-page {
    min-height: 100vh;
    padding-bottom: 2rem;
}
.public-cover {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.public-avatar {
    width: 110px; height: 110px;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    margin-top: -55px;
    background: var(--gray-200);
}
.public-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 2px;
}
.public-title {
    font-size: 0.95rem;
    color: var(--gray-500);
}
.public-bio {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}
.public-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
    width: 100%;
}
.public-contact-btn:hover { transform: translateY(-2px); }

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}
.social-icon-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Katalog grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}
@media (min-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
.catalog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    cursor: pointer;
}
.catalog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.catalog-card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--gray-100);
}
.catalog-card-body {
    padding: 0.75rem;
}
.catalog-card-body h6 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--gray-800);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.catalog-card-body .price-tag {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

/* Sepet */
.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    align-items: center;
}
.cart-item-img {
    width: 60px; height: 60px;
    border-radius: var(--radius);
    object-fit: cover;
    background: var(--gray-100);
    flex-shrink: 0;
}
.cart-total-bar {
    background: var(--gray-900);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

/* ===== Boş Durum ===== */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray-400);
}
.empty-state .empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.empty-state h5 { color: var(--gray-500); font-weight: 600; }
.empty-state p { font-size: 0.9rem; }

/* ===== Footer ===== */
.footer-prestige {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 3rem 0 1.5rem;
}
.footer-prestige a {
    color: var(--gray-400);
    transition: var(--transition);
}
.footer-prestige a:hover { color: var(--white); }

/* ===== Yardımcı ===== */
.text-gradient {
    color: var(--dark);
    font-weight: 800;
}
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), #a04444);
}
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Validation */
.validation-message,
.field-validation-error {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 4px;
}
.input-validation-error {
    border-color: var(--danger) !important;
}

/* Alert */
.alert-prestige {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}
.alert-success-prestige { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-danger-prestige { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-warning-prestige { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.alert-info-prestige { background: #cffafe; color: #155e75; border: 1px solid #a5f3fc; }

/* Spinner */
.spinner-prestige {
    width: 40px; height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Geçişler ===== */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   PUBLIC PAGE - Premium Mobile Native
   ============================================ */

/* Kategori Tab'ları - Yatay scroll */
.cat-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 0 12px;
    scroll-snap-type: x mandatory;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.cat-tab.active {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: scale(1.02);
}

/* Premium Ürün Kartları */
.p-catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 576px) {
    .p-catalog-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
.p-product-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    -webkit-tap-highlight-color: transparent;
}
.p-product-card:active {
    transform: scale(0.97);
}
.p-product-card .p-card-img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}
.p-product-card .p-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.p-product-card:hover .p-card-img-wrap img {
    transform: scale(1.08);
}
.p-product-card .p-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0.15;
}
.p-product-card .p-card-body {
    padding: 10px 12px 12px;
}
.p-product-card .p-card-name {
    font-size: 0.84rem;
    font-weight: 600;
    margin: 0 0 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.p-product-card .p-card-desc {
    font-size: 0.72rem;
    opacity: 0.5;
    margin: 0 0 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.p-product-card .p-card-price {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 8px;
}

/* Miktar Kontrol - Native Hissi */
.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    height: 36px;
}
.qty-btn {
    flex: 0 0 36px;
    height: 36px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.qty-btn:active {
    transform: scale(0.9);
}
.qty-display {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 0.88rem;
    min-width: 28px;
}
.qty-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: 36px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
}
.qty-add-btn:active {
    transform: scale(0.95);
}

/* Fiyat badge overlay */
.p-price-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 3px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Floating Cart Bar (native bottom bar) */
.floating-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(100%);
}
.floating-cart-bar.show {
    transform: translateY(0);
}
.floating-cart-bar .cart-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.floating-cart-bar .cart-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    position: relative;
}
.floating-cart-bar .cart-badge .badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.floating-cart-bar .cart-go-btn {
    padding: 10px 24px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    text-decoration: none;
}
.floating-cart-bar .cart-go-btn:active {
    transform: scale(0.96);
}

/* Toast bildirim */
.toast-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    white-space: nowrap;
}
.toast-notification.show {
    transform: translateX(-50%) translateY(0);
}

/* Sepet sayfası premium */
.p-cart-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 10px;
    transition: all 0.2s;
    align-items: center;
}
.p-cart-item .p-cart-img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}
.p-cart-item .p-cart-info {
    flex: 1;
    min-width: 0;
}
.p-cart-item .p-cart-info h6 {
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0 0 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.p-cart-item .p-cart-info .p-cart-sub {
    font-size: 0.78rem;
    opacity: 0.5;
}
.p-cart-item .p-cart-price {
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
}

/* Cart Qty Inline */
.cart-qty-inline {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    height: 30px;
}
.cart-qty-inline button {
    width: 30px;
    height: 30px;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}
.cart-qty-inline button:active { opacity: 0.7; }
.cart-qty-inline span {
    min-width: 26px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
}

/* Section divider */
.section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1.5rem 0 1rem;
}
.section-divider .divider-line {
    flex: 1;
    height: 1px;
    opacity: 0.1;
}
.section-divider .divider-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.4;
}

/* PWA-style safe area */
.public-page {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
}

/* Pulse animation for cart icon */
@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.cart-pulse {
    animation: cartPulse 0.3s ease;
}

/* Slide up animation */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.slide-up {
    animation: slideUp 0.4s ease forwards;
}
.slide-up-delay-1 { animation-delay: 0.05s; opacity: 0; }
.slide-up-delay-2 { animation-delay: 0.1s; opacity: 0; }
.slide-up-delay-3 { animation-delay: 0.15s; opacity: 0; }