/* ========================================
   PRODA STORE - Ana Stil Dosyası
   Premium E-Ticaret Arayüzü
   ======================================== */

/* --- CSS Değişkenleri --- */
:root {
    --primary: #0d2137;
    --primary-light: #14365a;
    --primary-lighter: #1a4a7a;
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --accent-lighter: #60a5fa;
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;
    --info: #0891b2;
    --dark: #111827;
    --gray-900: #1f2937;
    --gray-800: #374151;
    --gray-700: #4b5563;
    --gray-600: #6b7280;
    --gray-500: #9ca3af;
    --gray-400: #d1d5db;
    --gray-300: #e5e7eb;
    --gray-200: #f3f4f6;
    --gray-100: #f9fafb;
    --white: #ffffff;
    --bg-main: #f5f7fa;
    --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 -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);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.3s ease;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--gray-800);
    line-height: 1.6;
    font-size: 15px;
}

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

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

/* --- Üst Bar --- */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar a {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
}

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

.top-bar .top-contact i {
    color: var(--accent-lighter);
    margin-right: 4px;
}

.top-bar .top-links a {
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.top-bar .top-links a:hover {
    background: rgba(255,255,255,0.1);
}

.top-bar .separator {
    color: rgba(255,255,255,0.3);
    margin: 0 4px;
}

/* --- Ana Header --- */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .header-inner {
    display: flex;
    align-items: center;
    padding: 12px 0;
    gap: 20px;
}

.main-header .logo img {
    height: 40px;
}

.main-header .search-box {
    flex: 1;
    max-width: 560px;
    position: relative;
}

.main-header .search-box input {
    width: 100%;
    padding: 10px 44px 10px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 14px;
    transition: var(--transition);
    background: var(--gray-100);
}

.main-header .search-box input:focus {
    border-color: var(--accent);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.main-header .search-box button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: 36px;
    border: none;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.main-header .search-box button:hover {
    background: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-actions .action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 14px;
    border-radius: var(--radius);
    color: var(--gray-700);
    font-size: 11px;
    gap: 3px;
    transition: var(--transition);
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
}

.header-actions .action-btn i {
    font-size: 20px;
}

.header-actions .action-btn:hover {
    background: var(--gray-100);
    color: var(--accent);
}

.header-actions .action-btn .badge-count {
    position: absolute;
    top: 2px;
    right: 8px;
    background: var(--danger);
    color: var(--white);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* --- Kategori Navbar --- */
.category-nav {
    background: var(--primary-light);
    border-bottom: 2px solid var(--accent);
}

.category-nav .nav-link {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 0;
    transition: var(--transition);
}

.category-nav .nav-link:hover,
.category-nav .nav-link.active {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.category-nav .nav-link i {
    margin-right: 6px;
}

.category-nav .dropdown-menu {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 220px;
}

.category-nav .dropdown-item {
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 14px;
}

.category-nav .dropdown-item:hover {
    background: var(--gray-100);
    color: var(--accent);
}

/* --- Hero Slider --- */
.hero-slider {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-item {
    min-height: 480px;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-slide-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-slide-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-slide-content .btn-hero {
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
}

.hero-slide-img {
    position: relative;
    z-index: 2;
}

.hero-slide-img img {
    max-height: 380px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

/* --- Section Titles --- */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-title p {
    color: var(--gray-600);
    font-size: 15px;
}

.section-title .title-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* --- Kategori Kartları --- */
.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    height: 100%;
}

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

.category-card .cat-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.category-card .cat-icon.digital { background: #eff6ff; color: var(--accent); }
.category-card .cat-icon.web { background: #f0fdf4; color: var(--success); }
.category-card .cat-icon.print { background: #fef3c7; color: var(--warning); }
.category-card .cat-icon.software { background: #fce7f3; color: #db2777; }

.category-card h5 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    font-size: 16px;
}

.category-card p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

/* --- Ürün Kartları --- */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-card .product-img {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: var(--gray-100);
}

.product-card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-card .product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.badge-digital { background: #dbeafe; color: #1d4ed8; }
.badge-physical { background: #fef3c7; color: #92400e; }
.badge-package { background: #d1fae5; color: #065f46; }
.badge-software { background: #fce7f3; color: #9d174d; }
.badge-custom { background: #ede9fe; color: #5b21b6; }
.badge-new { background: var(--danger); color: var(--white); }
.badge-popular { background: var(--accent); color: var(--white); }

.product-card .product-actions-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    padding: 10px;
    display: flex;
    gap: 6px;
    justify-content: center;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    transition: var(--transition);
}

.product-card:hover .product-actions-overlay {
    bottom: 0;
}

.product-actions-overlay .btn {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: var(--radius-sm);
}

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

.product-card .product-category {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-card .product-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.4;
}

.product-card .product-title a:hover {
    color: var(--accent);
}

.product-card .product-desc {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 12px;
    flex: 1;
}

.product-card .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
}

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

.product-card .product-price .old-price {
    font-size: 13px;
    color: var(--gray-500);
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 4px;
}

.product-card .product-price small {
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-600);
}

.product-card .btn-add-cart {
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
    transition: var(--transition);
    cursor: pointer;
}

.product-card .btn-add-cart:hover {
    background: var(--accent);
    color: var(--white);
}

/* --- Butonlar --- */
.btn-primary-custom {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline-custom {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

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

.btn-white {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* --- Neden Biz --- */
.feature-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-lighter);
}

.feature-card .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--accent);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: var(--white);
}

.feature-card h5 {
    font-weight: 600;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

/* --- Sipariş Süreci --- */
.process-step {
    text-align: center;
    position: relative;
    padding: 20px;
}

.process-step .step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 14px;
}

.process-step h6 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.process-step p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

/* --- Müşteri Yorumları --- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-200);
    height: 100%;
}

.testimonial-card .stars {
    color: #f59e0b;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
    font-size: 16px;
}

.testimonial-card .author-info h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.testimonial-card .author-info span {
    font-size: 12px;
    color: var(--gray-500);
}

/* --- SSS --- */
.faq-section .accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
    padding: 16px 20px;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--gray-50);
    color: var(--accent);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: var(--gray-200);
}

.faq-section .accordion-body {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* --- CTA --- */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-lighter) 100%);
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

/* --- Footer --- */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    padding-top: 60px;
}

.site-footer h5 {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

.site-footer p, .site-footer a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.site-footer a:hover {
    color: var(--white);
}

.site-footer .footer-links li {
    list-style: none;
    margin-bottom: 8px;
}

.site-footer .footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-footer .footer-links a i {
    font-size: 10px;
    color: var(--accent-lighter);
}

.footer-contact li {
    list-style: none;
    margin-bottom: 10px;
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--accent-lighter);
    margin-top: 3px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    margin-right: 6px;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* --- Filtre Sidebar --- */
.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--gray-200);
}

.filter-sidebar h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.filter-group .form-check {
    margin-bottom: 6px;
}

.filter-group .form-check-label {
    font-size: 14px;
    color: var(--gray-700);
}

.filter-group .form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* --- Breadcrumb --- */
.breadcrumb-area {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 14px 0;
}

.breadcrumb-area .breadcrumb {
    margin: 0;
    font-size: 13px;
}

.breadcrumb-area .breadcrumb-item a {
    color: var(--gray-600);
}

.breadcrumb-area .breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-area .breadcrumb-item.active {
    color: var(--primary);
    font-weight: 500;
}

/* --- Ürün Detay --- */
.product-detail-gallery {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.product-detail-gallery .main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-detail-gallery .thumb-list {
    display: flex;
    gap: 8px;
    padding: 12px;
}

.product-detail-gallery .thumb-list img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-detail-gallery .thumb-list img.active,
.product-detail-gallery .thumb-list img:hover {
    border-color: var(--accent);
}

.product-detail-info {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-200);
}

.product-detail-info .product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-detail-info .product-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--gray-600);
}

.product-detail-info .product-meta i {
    color: var(--accent);
    margin-right: 4px;
}

/* --- Varyasyon Seçim Kartları --- */
.variant-group {
    margin-bottom: 20px;
}

.variant-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-800);
    margin-bottom: 10px;
    display: block;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-option {
    padding: 10px 18px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    min-width: 70px;
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.variant-option:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.variant-option.active {
    border-color: var(--accent);
    background: #eff6ff;
    color: var(--accent);
    font-weight: 600;
}

.variant-option .variant-price {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

.variant-option.active .variant-price {
    color: var(--accent);
}

/* --- Seçim Kartları (Büyük) --- */
.selection-card {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
    height: 100%;
}

.selection-card:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow);
}

.selection-card.active {
    border-color: var(--accent);
    background: #f0f5ff;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.selection-card .card-icon {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 10px;
}

.selection-card h6 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.selection-card p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 6px;
}

.selection-card .card-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
}

.selection-card .check-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.selection-card.active .check-icon {
    display: flex;
}

/* --- Fiyat Özet Kutusu --- */
.price-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    padding: 24px;
    position: sticky;
    top: 100px;
}

.price-summary h5 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.price-summary .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.price-summary .summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 14px;
    padding-top: 14px;
    border-top: 2px solid var(--gray-200);
}

/* --- Sepet --- */
.cart-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.cart-table th {
    background: var(--gray-100);
    font-weight: 600;
    font-size: 13px;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 16px;
    border: none;
}

.cart-table td {
    padding: 16px;
    vertical-align: middle;
    border-color: var(--gray-200);
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-item-info img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius);
}

.cart-item-info h6 {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 4px;
}

.cart-item-info .item-variant {
    font-size: 12px;
    color: var(--gray-500);
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    overflow: hidden;
}

.qty-control button {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--gray-100);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.qty-control button:hover {
    background: var(--gray-200);
}

.qty-control input {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: 600;
    font-size: 14px;
}

.qty-control input:focus {
    outline: none;
}

/* --- Order Tracking Steps --- */
.tracking-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
}

.tracking-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gray-300);
    z-index: 0;
}

.tracking-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.tracking-step .step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-300);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 18px;
    transition: var(--transition);
}

.tracking-step.completed .step-icon {
    background: var(--success);
    color: var(--white);
}

.tracking-step.active .step-icon {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.2);
}

.tracking-step .step-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
}

.tracking-step.completed .step-label,
.tracking-step.active .step-label {
    color: var(--primary);
}

/* --- Auth Pages --- */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-main);
    padding: 40px 20px;
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 440px;
    width: 100%;
    padding: 40px;
}

.auth-card .auth-logo {
    text-align: center;
    margin-bottom: 28px;
}

.auth-card .auth-logo img {
    height: 44px;
}

.auth-card h3 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    text-align: center;
}

.auth-card .auth-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 28px;
}

.auth-card .form-label {
    font-weight: 600;
    font-size: 13px;
    color: var(--gray-700);
}

.auth-card .form-control {
    padding: 10px 14px;
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-300);
    font-size: 14px;
}

.auth-card .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.auth-card .btn-auth {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
}

/* --- Müşteri Panel --- */
.panel-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.panel-sidebar .panel-user {
    padding: 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.panel-sidebar .panel-user .user-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 24px;
}

.panel-sidebar .panel-user h6 {
    font-weight: 600;
    margin-bottom: 2px;
}

.panel-sidebar .panel-user span {
    font-size: 12px;
    opacity: 0.8;
}

.panel-sidebar .panel-menu {
    list-style: none;
    padding: 8px;
}

.panel-sidebar .panel-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--radius);
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.panel-sidebar .panel-menu li a:hover {
    background: var(--gray-100);
    color: var(--accent);
}

.panel-sidebar .panel-menu li a.active {
    background: #eff6ff;
    color: var(--accent);
    font-weight: 600;
}

.panel-sidebar .panel-menu li a i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.panel-content-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 24px;
}

.panel-content-card h4 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-200);
}

/* --- Destek --- */
.support-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 24px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 24px;
}

.contact-info-card .info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.contact-info-card .info-item:last-child {
    border: none;
    margin: 0;
    padding: 0;
}

.contact-info-card .info-item .info-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-card .info-item h6 {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.contact-info-card .info-item p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.whatsapp-btn {
    background: #25d366;
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-1px);
}

/* --- Pricing Cards --- */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 3px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h5 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin: 16px 0;
}

.pricing-card .price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-500);
}

.pricing-card .feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    text-align: left;
    flex: 1;
}

.pricing-card .feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card .feature-list li i {
    color: var(--success);
    font-size: 13px;
}

.pricing-card .feature-list li i.fa-xmark {
    color: var(--gray-400);
}

/* --- Page Header --- */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 40px 0;
    color: var(--white);
}

.page-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin: 0;
}

/* --- Form Styles --- */
.form-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 24px;
    margin-bottom: 20px;
}

.form-section h5 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 16px;
}

.form-section .form-label {
    font-weight: 500;
    font-size: 13px;
    color: var(--gray-700);
}

.form-section .form-control,
.form-section .form-select {
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-300);
    padding: 9px 14px;
    font-size: 14px;
}

.form-section .form-control:focus,
.form-section .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}

/* --- Status Badges --- */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.active { background: #d1fae5; color: #065f46; }
.status-badge.pending { background: #fef3c7; color: #92400e; }
.status-badge.completed { background: #dbeafe; color: #1d4ed8; }
.status-badge.cancelled { background: #fee2e2; color: #991b1b; }

/* --- Responsive --- */
@media (max-width: 991px) {
    .hero-slide-content h1 {
        font-size: 2rem;
    }

    .hero-slider .carousel-item {
        min-height: auto;
    }

    .hero-slide-img {
        display: none;
    }

    .tracking-steps {
        flex-direction: column;
        gap: 16px;
    }

    .tracking-steps::before {
        top: 0;
        bottom: 0;
        left: 24px;
        right: auto;
        width: 3px;
        height: 100%;
    }

    .tracking-step {
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
    }

    .tracking-step .step-icon {
        margin: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .top-bar .top-contact {
        display: none;
    }

    .main-header .header-inner {
        flex-wrap: wrap;
    }

    .main-header .search-box {
        order: 3;
        max-width: 100%;
        flex-basis: 100%;
        margin-top: 8px;
    }

    .header-actions .action-btn span {
        display: none;
    }

    .category-nav .nav {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .hero-slide-content {
        padding: 40px 0;
    }

    .hero-slide-content h1 {
        font-size: 1.6rem;
    }

    .filter-sidebar {
        margin-bottom: 20px;
    }

    .price-summary {
        position: static;
    }
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* --- Web Paket Kart --- */
.web-package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.web-package-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.web-package-card .package-preview {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.web-package-card .package-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.web-package-card:hover .package-preview img {
    transform: scale(1.05);
}

.web-package-card .package-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,33,55,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.web-package-card:hover .package-overlay {
    opacity: 1;
}

.web-package-card .package-body {
    padding: 20px;
}

.web-package-card .package-body h5 {
    font-weight: 600;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 6px;
}

.web-package-card .package-body p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.web-package-card .package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 14px;
}

.web-package-card .package-features li {
    font-size: 13px;
    color: var(--gray-700);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.web-package-card .package-features li i {
    color: var(--success);
    font-size: 11px;
}

.web-package-card .package-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
}

.web-package-card .package-price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-500);
}

/* ========================================
   STORY KATEGORİ ALANI
   ======================================== */
.story-categories {
    padding: 28px 0 12px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.story-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 4px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.story-scroll::-webkit-scrollbar {
    display: none;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition);
}

.story-item:hover {
    transform: translateY(-4px);
}

.story-ring {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--accent), #8b5cf6, var(--accent-light));
    margin-bottom: 8px;
    transition: var(--transition);
}

.story-item:hover .story-ring {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #8b5cf6, var(--accent), #06b6d4);
}

.story-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
}

.story-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: var(--transition);
}

.story-item:hover span {
    color: var(--accent);
}

/* ========================================
   REFERANSLAR - KAYAN LOGO BANDI
   ======================================== */
.references-section {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}

.references-section .section-title {
    margin-bottom: 32px;
}

.logo-marquee-wrapper {
    position: relative;
}

.logo-marquee-wrapper::before,
.logo-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logo-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.logo-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.logo-marquee {
    display: flex;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.logo-marquee:hover {
    animation-play-state: paused;
}

.logo-marquee-item {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 24px;
    padding: 12px 20px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.logo-marquee-item:hover {
    background: var(--white);
    border-color: var(--accent-lighter);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.logo-marquee-item img {
    max-height: 44px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
}

.logo-marquee-item:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   WHATSAPP SABİT BUTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 22px;
}

.whatsapp-float .wf-text {
    font-size: 13px;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
        bottom: 18px;
        right: 18px;
    }
    .whatsapp-float .wf-text {
        display: none;
    }
    .whatsapp-float i {
        font-size: 24px;
    }
}

/* ========================================
   MÜŞTERİ PANELİ SİDEBAR DÜZELTMESİ
   ======================================== */
.panel-sidebar > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid var(--gray-100);
    text-decoration: none;
}

.panel-sidebar > a:last-child {
    border-bottom: none;
}

.panel-sidebar > a:hover {
    background: var(--gray-100);
    color: var(--accent);
}

.panel-sidebar > a.active {
    background: #eff6ff;
    color: var(--accent);
    font-weight: 600;
    border-left: 3px solid var(--accent);
}

.panel-sidebar > a i {
    width: 20px;
    text-align: center;
    font-size: 15px;
    flex-shrink: 0;
}

.panel-sidebar > a .badge {
    margin-left: auto;
}

/* ========================================
   CHECKOUT - SHOPIFY TARZI
   ======================================== */
.checkout-page {
    background: var(--gray-100);
    min-height: 100vh;
}

.checkout-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
}

.checkout-header .logo img {
    height: 32px;
}

.checkout-main {
    padding: 32px 0 60px;
}

.checkout-form-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 28px;
    margin-bottom: 20px;
}

.checkout-form-block h6 {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-form-block h6 i {
    color: var(--accent);
    font-size: 16px;
}

.checkout-form-block .form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 4px;
}

.checkout-form-block .form-control,
.checkout-form-block .form-select {
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 14px;
    transition: var(--transition);
}

.checkout-form-block .form-control:focus,
.checkout-form-block .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}

.checkout-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 24px;
    position: sticky;
    top: 80px;
}

.checkout-summary h6 {
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.checkout-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.checkout-item:last-of-type {
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 12px;
}

.checkout-item img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    object-fit: cover;
    flex-shrink: 0;
}

.checkout-item-info {
    flex: 1;
    min-width: 0;
}

.checkout-item-info .item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkout-item-info .item-meta {
    font-size: 12px;
    color: var(--gray-500);
}

.checkout-item-price {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    white-space: nowrap;
}

.checkout-totals .row-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: var(--gray-700);
}

.checkout-totals .row-total {
    display: flex;
    justify-content: space-between;
    padding: 14px 0 0;
    margin-top: 8px;
    border-top: 2px solid var(--gray-200);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: var(--gray-500);
    font-size: 13px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--gray-300);
}

.divider span {
    padding: 0 16px;
}
