/* Müşteri Panel Modern CSS */

/* Sidebar Stiller */
.panel-sidebar {
    background: white;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.sidebar-header {
    background: var(--primary-color);
    color: white;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.3px;
}

.sidebar-profile {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-profile .profile-img {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.sidebar-profile .profile-info {
    flex: 1;
    min-width: 0;
}

.sidebar-profile .profile-info h4 {
    margin: 0 0 3px 0;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-profile .profile-info h4 a {
    color: #333;
    text-decoration: none;
}

.sidebar-profile .profile-info h4 a:hover {
    color: var(--primary-color);
}

.sidebar-profile .profile-info span {
    font-size: 10px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
}

.sidebar-menu .menu-item {
    display: flex;
    align-items: center;
    padding: 11px 15px;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
    position: relative;
}

.sidebar-menu .menu-item:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    padding-left: 20px;
}

.sidebar-menu .menu-item i:first-child {
    width: 16px;
    margin-right: 10px;
    text-align: center;
    font-size: 13px;
    flex-shrink: 0;
}

.sidebar-menu .menu-item .arrow {
    margin-left: auto;
    font-size: 11px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.sidebar-menu .menu-item-danger {
    color: #dc3545;
    border-top: 1px solid #f0f0f0;
}

.sidebar-menu .menu-item-danger:hover {
    background: #fff5f5;
    color: #dc3545;
}

.sidebar-menu .submenu {
    background: #f8f9fa;
}

.sidebar-menu .submenu-item {
    display: block;
    padding: 9px 15px 9px 41px;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.sidebar-menu .submenu-item:last-child {
    border-bottom: none;
}

.sidebar-menu .submenu-item:hover {
    background: #e9ecef;
    color: var(--primary-color);
    padding-left: 46px;
}

.sidebar-menu .submenu-item i {
    margin-right: 6px;
    font-size: 11px;
}

/* Dropdown Arrow Animation */
.sidebar-menu .menu-item .arrow i {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Panel Header & Body */
.panel-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    border-radius: 4px 4px 0 0;
    margin-bottom: 0;
}

.panel-header h1 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.panel-header h1 i {
    margin-right: 8px;
}

.panel-header p {
    margin: 3px 0 0 0;
    opacity: 0.9;
    font-size: 12px;
}

.panel-body {
    background: white;
    padding: 20px;
    border-radius: 0 0 4px 4px;
    border: 1px solid #e0e0e0;
    border-top: none;
}

/* İstatistik Kartları */
.panel-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    background: white;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    transition: border-color 0.2s ease;
}

.stat-card:hover {
    border-color: var(--primary-color);
}

.stat-card-icon {
    width: 35px;
    height: 35px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 10px;
    background: #f5f5f5;
    color: var(--primary-color);
}

.stat-card-value {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.stat-card-label {
    font-size: 11px;
    color: #777;
    font-weight: 400;
    margin-bottom: 10px;
}

/* Panel Card */
.panel-card {
    background: white;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.panel-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
}

.panel-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.panel-card-title i {
    margin-right: 6px;
    color: var(--primary-color);
}

/* Tablo */
.panel-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.panel-table thead {
    background: #f8f9fa;
}

.panel-table th {
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

.panel-table td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    color: #444;
}

.panel-table tr:hover {
    background: #f8f9fa;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
}

.badge i {
    margin-right: 3px;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-warning {
    background: #fff3cd;
    color: #856404;
}

.badge-danger {
    background: #f8d7da;
    color: #721c24;
}

.badge-info {
    background: #d1ecf1;
    color: #0c5460;
}

/* Butonlar */
.btn-panel {
    padding: 7px 14px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-panel i {
    margin-right: 4px;
}

.btn-panel-primary {
    background: var(--primary-color);
    color: white;
}

.btn-panel-primary:hover {
    background: #0052a3;
    color: white;
}

.btn-panel-secondary {
    background: #6c757d;
    color: white;
}

.btn-panel-secondary:hover {
    background: #5a6268;
    color: white;
}

.btn-panel-success {
    background: #28a745;
    color: white;
}

.btn-panel-success:hover {
    background: #218838;
    color: white;
}

.btn-panel-danger {
    background: #dc3545;
    color: white;
}

.btn-panel-danger:hover {
    background: #c82333;
    color: white;
}

/* Form */
.form-panel {
    max-width: 100%;
}

.form-panel-group {
    margin-bottom: 15px;
}

.form-panel-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.form-panel-input,
.form-panel-input select,
.form-panel-input textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-panel-input:focus,
.form-panel-input select:focus,
.form-panel-input textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0,102,204,0.1);
}

/* Alert */
.alert-panel {
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 13px;
}

.alert-panel-success {
    background: #d4edda;
    color: #155724;
    border-left: 3px solid #28a745;
}

.alert-panel-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 3px solid #dc3545;
}

.alert-panel-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 3px solid #17a2b8;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.empty-state i {
    font-size: 40px;
    margin-bottom: 12px;
    opacity: 0.3;
}

.empty-state h3 {
    font-size: 16px;
    color: #666;
    margin-bottom: 6px;
}

.empty-state p {
    font-size: 12px;
    color: #999;
}


/* Responsive */
@media (max-width: 1200px) {
    .panel-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .panel-stats {
        grid-template-columns: 1fr;
    }
    
    .panel-table {
        font-size: 11px;
    }
    
    .panel-table th,
    .panel-table td {
        padding: 8px;
    }
    
    .panel-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}













  /* ========================================WEBLIYON MODERN HEADER v2.0Prefix: whdr- (benzersiz)======================================== */
        * { box-sizing: border-box; }

        /* Kampanya Bar - Kompakt */
        .whdr-promo {
            background: linear-gradient(90deg, #059669 0%, #10b981 100%);
            padding: 8px 0;
        }

        .whdr-promo-inner {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .whdr-promo-coupon {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.2);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            color: #fff;
            font-weight: 600;
        }

        .whdr-promo-coupon code {
            background: #fff;
            color: #059669;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 11px;
        }

        .whdr-promo-coupon button {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.4);
            color: #fff;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 11px;
            cursor: pointer;
            font-weight: 600;
        }

        .whdr-promo-text {
            color: #fff;
            font-size: 13px;
            font-weight: 500;
        }

        .whdr-promo-close {
            background: transparent;
            border: none;
            color: rgba(255,255,255,0.7);
            cursor: pointer;
            padding: 4px;
            font-size: 14px;
            position: absolute;
            right: 20px;
        }

        /* Üst Bar */
        .whdr-topbar {
            background: var(--primary-color);
            padding: 10px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .whdr-topbar-inner {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .whdr-topbar-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .whdr-topbar-left a {
            color: rgba(255,255,255,0.8);
            font-size: 13px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color 0.2s;
            font-family: 'Inter', sans-serif;
        }

        .whdr-topbar-left a:hover {
            color: #fff;
        }

        .whdr-topbar-left a i {
            color: rgba(255,255,255,0.9);
            font-size: 11px;
        }

        .whdr-topbar-right {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .whdr-topbar-right a {
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
            padding: 7px 14px;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.2s;
            font-family: 'Inter', sans-serif;
        }

        .whdr-topbar-right .whdr-btn-login {
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.25);
        }

        .whdr-topbar-right .whdr-btn-login:hover {
            background: rgba(255,255,255,0.25);
        }

        .whdr-topbar-right .whdr-btn-register {
            background: var(--secondary-color);
        }

        .whdr-topbar-right .whdr-btn-register:hover {
            background: var(--secondary-color);
            opacity: 0.85;
        }

        .whdr-topbar-right .whdr-btn-logout {
            background: rgba(239,68,68,0.15);
            border: 1px solid rgba(239,68,68,0.25);
        }

        .whdr-topbar-right .whdr-btn-icon {
            width: 32px;
            height: 32px;
            padding: 0;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .whdr-topbar-right .whdr-btn-icon img {
            width: 18px;
            height: 13px;
            border-radius: 2px;
        }

        /* Ana Menü */
        .whdr-nav {
            background: #fff;
            box-shadow: 0 1px 10px rgba(0,0,0,0.05);
            position: relative;
            z-index: 100;
        }

        .whdr-nav-inner {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
            flex-wrap: nowrap;
        }

        .whdr-logo {
            flex-shrink: 0;
            order: 0;
        }

        .whdr-logo img {
            height: 42px;
            width: auto;
        }

        /* Menü */
        .whdr-menu {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
            margin: 0 30px;
            padding: 0;
            list-style: none;
        }

        .whdr-menu > li {
            position: relative;
        }

        .whdr-menu > li > a {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 24px 16px 16px;
            color: #1e293b;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            transition: color 0.2s;
            white-space: nowrap;
            position: relative;
        }

        .whdr-menu > li > a:hover {
            color: var(--primary-color);
        }

        .whdr-menu > li > a i.fa-caret-down {
            font-size: 10px;
            opacity: 0.5;
        }

        /* Menu Tag */
        .whdr-menu .menu_tag {
            display: block;
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            padding: 1px 7px;
            font-size: 9px;
            font-weight: 700;
            border-radius: 3px;
            color: #fff;
            white-space: nowrap;
            line-height: 1.6;
        }

        /* Dropdown */
        .whdr-menu > li > ul {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            min-width: 200px;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.12);
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s;
            list-style: none;
            z-index: 1000;
        }

        .whdr-menu > li:hover > ul {
            opacity: 1;
            visibility: visible;
        }

        .whdr-menu > li > ul li a {
            display: block;
            padding: 10px 18px;
            color: #334155;
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
        }

        .whdr-menu > li > ul li a:hover {
            background: #f8fafc;
            color: var(--primary-color);
        }

        /* Mega Menu */
        .whdr-menu > li > ul#megamenu {
            min-width: 650px;
            padding: 20px;
        }

        .whdr-menu > li.has-megamenu {
            position: static;
        }

        .whdr-menu > li.has-megamenu > .megamenu-content {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            width: 100%;
            transform: none;
            background: #fff;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.12);
            border-top: 2px solid var(--primary-color);
            padding: 24px 32px;
            opacity: 0;
            visibility: hidden;
            transition: opacity .2s, visibility .2s;
            z-index: 9999;
        }

        .whdr-menu > li.has-megamenu:hover > .megamenu-content {
            opacity: 1;
            visibility: visible;
        }

        /* Sepet */
        .whdr-cart {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: #f1f5f9;
            border-radius: 10px;
            position: relative;
            text-decoration: none;
        }

        .whdr-cart i {
            font-size: 18px;
            color: #1e293b;
        }

        .whdr-cart .basket-count {
            position: absolute;
            top: -4px;
            right: -4px;
            background: var(--secondary-color);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            min-width: 18px;
            height: 18px;
            padding: 0 4px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .whdr-cart .basket-count:empty,
        .whdr-cart .basket-count[data-count="0"] {
            display: none;
        }

        /* Mobil Menü Butonu */
        .whdr-mobile-toggle {
            display: none;
            width: 44px;
            height: 44px;
            background: #f1f5f9;
            border-radius: 10px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            order: -1;
            margin-right: 12px;
        }

        .whdr-mobile-toggle i {
            font-size: 20px;
            color: #1e293b;
        }

        /* Mobil Menü Panel */
        .whdr-mobile-menu {
            display: none;
            background: #fff;
            padding: 16px;
            border-top: 1px solid #e2e8f0;
        }

        .whdr-mobile-nav > li > a .fa-caret-down {
            transition: transform 0.3s;
        }

        .whdr-mobile-nav > li > a.active .fa-caret-down {
            transform: rotate(180deg);
        }

        .whdr-mobile-nav > li {
            border-bottom: 1px solid #f1f5f9;
        }

        .whdr-mobile-nav > li > a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            color: #1e293b;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
        }

        .whdr-mobile-nav > li > a:hover {
            color: var(--primary-color);
        }

        .whdr-mobile-nav li ul.inner {
            list-style: none;
            padding: 0;
            margin: 0 0 10px 0;
            background: #f8fafc;
            border-radius: 10px;
            overflow: hidden;
        }

        .whdr-mobile-nav li ul.inner li a {
            display: block;
            padding: 12px 16px;
            font-size: 13px;
            font-weight: 500;
            color: #475569;
            text-decoration: none;
            border-bottom: 1px solid #e2e8f0;
        }

        .whdr-mobile-nav li ul.inner li:last-child a {
            border-bottom: none;
        }

        .whdr-mobile-nav li ul.inner li a:hover {
            background: #e2e8f0;
            color: var(--primary-color);
        }

        .whdr-mobile-menu .whdr-mobile-btns {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid #e2e8f0;
        }

        .whdr-mobile-menu .whdr-mobile-btns a {
            flex: 1;
            text-align: center;
            padding: 12px;
            background: #f8fafc;
            border-radius: 8px;
            color: #1e293b;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
        }

        .whdr-mobile-menu .whdr-mobile-btns {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid #e2e8f0;
        }

        .whdr-mobile-menu .whdr-mobile-btns a {
            flex: 1;
            text-align: center;
            padding: 12px;
            background: #f8fafc;
            border-radius: 8px;
            color: #1e293b;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
        }

        .whdr-mobile-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .whdr-mobile-nav > li {
            border-bottom: 1px solid #f1f5f9;
        }

        .whdr-mobile-nav > li > a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            color: #1e293b;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
        }

        .whdr-mobile-nav > li > a:hover {
            color: var(--primary-color);
        }

        /* Mobil Alt Menü (Accordion) */
        .whdr-mobile-nav li ul.inner {
            display: none;
            list-style: none;
            padding: 0;
            margin: 0 0 10px 0;
            background: #f8fafc;
            border-radius: 10px;
            overflow: hidden;
        }

        .whdr-mobile-nav li ul.inner.show {
            display: block;
        }

        .whdr-mobile-nav li ul.inner li {
            border-bottom: 1px solid #e2e8f0;
        }

        .whdr-mobile-nav li ul.inner li:last-child {
            border-bottom: none;
        }

        .whdr-mobile-nav li ul.inner li a {
            display: block;
            padding: 12px 16px;
            font-size: 13px;
            font-weight: 500;
            color: #475569;
            text-decoration: none;
            transition: all 0.2s;
        }

        .whdr-mobile-nav li ul.inner li a:hover {
            background: #e2e8f0;
            color: var(--primary-color);
            padding-left: 20px;
        }

        /* Mobil Toggle Icon Rotate */
        .whdr-mobile-nav > li > a .fa-caret-down {
            transition: transform 0.3s;
        }

        .whdr-mobile-nav > li > a.active .fa-caret-down {
            transform: rotate(180deg);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .whdr-menu { display: none; }
            .whdr-mobile-toggle { display: flex; order: -1; }
            .whdr-logo { order: 0; flex: 1; }
            .whdr-cart { order: 1; }
            .whdr-topbar-left { display: none; }
        }

        @media (max-width: 768px) {
            .whdr-promo-inner { font-size: 12px; gap: 10px; }
            .whdr-nav-inner { height: 60px; }
            .whdr-logo img { height: 36px; }
        }

        @media (max-width: 480px) {
            .whdr-promo-coupon { display: none; }
            .whdr-topbar-right a span { display: inline !important; }
            .whdr-topbar-right .whdr-btn-login,
            .whdr-topbar-right .whdr-btn-register,
            .whdr-topbar-right .whdr-btn-logout { padding: 7px 12px; font-size: 11px; }
        }

        /* ========================================HERO SECTION======================================== */
        .hero-section {
            background: #ffffff;
            min-height: 500px;
            display: flex;
            align-items: center;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
            top: -150px;
            right: -100px;
            pointer-events: none;
        }

        .hero-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text h1 {
            font-size: 48px;
            font-weight: 700;
            color: #1e293b;
            line-height: 1.3;
            margin-bottom: 16px;
        }

        .gradient-text {
            color: var(--primary-color);
        }

        .hero-text h2 {
            font-size: 20px;
            color: #64748b;
            margin-bottom: 16px;
            font-weight: 500;
            font-family: 'Open Sans', sans-serif;
        }

        .hero-text p {
            font-size: 16px;
            color: #475569;
            margin-bottom: 24px;
            line-height: 1.6;
            font-family: 'Open Sans', sans-serif;
        }

        .search-hero {
            margin: 24px 0;
        }

        .search-wrapper {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
        }

        .search-input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-size: 14px;
            background: #f8fafc;
            color: #1e293b;
            transition: all 0.3s ease;
        }

        .search-input::placeholder {
            color: #94a3b8;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
        }

        .search-button {
            padding: 12px 24px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            font-size: 14px;
        }

        .search-button:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        .hero-ctas {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }

        .btn-primary {
            background: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: #f1f5f9;
            color: #1e293b;
            border: 1px solid #e2e8f0;
        }

        .btn-secondary:hover {
            background: #e2e8f0;
            transform: translateY(-1px);
        }

        .hero-image {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 1200px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .hero-image {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: auto;
                padding: 50px 20px;
            }
            .hero-text h1 {
                font-size: 32px;
            }
            .search-wrapper {
                flex-direction: column;
            }
            .search-button {
                width: 100%;
                justify-content: center;
            }
            .hero-ctas {
                flex-direction: column;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 24px;
            }
            .hero-text h2 {
                font-size: 16px;
            }
            .hero-text p {
                font-size: 14px;
            }
        }

        /* ========================================QUICK SERVICES SECTION======================================== */
        .quick-services-section {
            background: #ffffff;
            padding: 60px 20px;
        }

        .quick-services-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        .quick-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .quick-service-card {
            background: #f8fafc;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }

        .quick-service-card:hover {
            background: #ffffff;
            border-color: var(--primary-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transform: translateY(-5px);
        }

        .quick-service-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: #ffffff;
        }

        .quick-service-card:hover .quick-service-icon {
            background: var(--secondary-color);
        }

        .quick-service-title {
            font-size: 18px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 12px;
            font-family: 'Open Sans', sans-serif;
        }

        .quick-service-desc {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            font-family: 'Open Sans', sans-serif;
        }

        /* ========================================PRODUCTS SECTION======================================== */
        .products-section {
            background: #f8fafc;
            padding: 60px 20px;
        }

        .products-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 32px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 12px;
            font-family: 'Open Sans', sans-serif;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 24px;
        }

        .product-card {
            background: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .product-card:hover {
            border-color: #e0e0e0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .product-image-wrapper {
            position: relative;
            overflow: hidden;
            background: #f8f8f8;
            aspect-ratio: 1;
        }

        .product-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image-wrapper img {
            transform: scale(1.03);
        }

        .product-link {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 16px;
            opacity: 0;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .product-image-wrapper:hover .product-link {
            opacity: 1;
        }

        .product-info {
            padding: 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-tags {
            position: absolute;
            top: 8px;
            left: 8px;
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            z-index: 2;
            pointer-events: none;
        }

        .product-tag {
            padding: 2px 6px;
            border-radius: 3px;
            font-size: 9px;
            font-weight: 600;
            text-transform: uppercase;
            font-family: 'Inter', sans-serif;
            color: #ffffff;
            letter-spacing: 0.3px;
        }

        .product-tag:nth-child(1) {
            background: var(--success-color);
        }

        .product-tag:nth-child(2) {
            background: var(--warning-color);
        }

        .product-tag:nth-child(n+3) {
            display: none;
        }

        .product-title {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 6px;
            line-height: 1.3;
            font-family: 'Open Sans', sans-serif;
        }

        .product-title a {
            color: #1a1a1a;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .product-title a:hover {
            color: var(--primary-color);
        }

        .product-meta {
            font-size: 12px;
            color: #888;
            margin-bottom: 10px;
            font-family: 'Open Sans', sans-serif;
        }

        .product-price {
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            background: var(--primary-color);
            padding: 8px 12px;
            border-radius: 6px;
            margin-top: auto;
            text-align: right;
            font-family: 'Inter', sans-serif;
            display: inline-block;
            align-self: flex-end;
        }

        /* ========================================BLOG SECTION======================================== */
        .blog-section {
            background: #ffffff;
            padding: 60px 20px;
        }

        .blog-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        .blog-slider {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .blog-item {
            background: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .blog-item:hover {
            border-color: #e0e0e0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .blog-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 0;
            color: #ffffff;
            text-align: center;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .blog-header img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-header i {
            font-size: 40px;
            margin-bottom: 10px;
        }

        .blog-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-title {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 10px;
            line-height: 1.4;
            font-family: 'Inter', sans-serif;
        }

        .blog-title a {
            color: #1a1a1a;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .blog-title a:hover {
            color: var(--primary-color);
        }

        .blog-excerpt {
            font-size: 13px;
            color: #666;
            margin-bottom: 12px;
            line-height: 1.5;
            font-family: 'Inter', sans-serif;
            flex: 1;
        }

        .blog-footer {
            font-size: 12px;
            color: #999;
            font-family: 'Inter', sans-serif;
            display: flex;
            align-items: center;
            gap: 6px;
            padding-top: 12px;
            border-top: 1px solid #f0f0f0;
        }

        .blog-footer i {
            font-size: 11px;
        }

        /* Search Results */
        #hero-search-results {
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(15, 23, 42, 0.95) !important;
            backdrop-filter: blur(10px);
        }

        .search-result-item {
            padding: 12px 14px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .search-result-item:first-child {
            border-top: none;
        }

        .search-result-item:last-child {
            border-bottom: none;
        }

        .search-result-item:hover {
            background: rgba(var(--primary-rgb, 34, 197, 94), 0.12);
            padding-left: 18px;
        }

        .search-result-img {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .search-result-info {
            flex: 1;
            min-width: 0;
        }

        .search-result-title {
            font-size: 0.9rem;
            color: #fff;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 3px;
        }

        .search-result-price {
            font-size: 0.8rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .search-result-empty {
            padding: 20px 14px;
            color: #94a3b8;
            text-align: center;
            font-size: 0.9rem;
        }





/* ===== Üyelik Formu Stilleri ===== */
.mp-breadcrumb-bar { background: #f5f5f5; padding: 20px 0; border-bottom: 1px solid #e2e8f0; }
.mp-container { max-width: 1600px; margin: 0 auto; padding: 0 20px; }
.mp-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #64748b; font-family: 'Inter', sans-serif; }
.mp-breadcrumb a { color: var(--primary-color); text-decoration: none; }
.mp-breadcrumb-active { color: #1e293b; font-weight: 600; }
.mp-content-area { background: #fff; padding: 60px 20px; }
.mp-page-title { font-size: 32px; font-weight: 700; color: #1e293b; margin-bottom: 12px; font-family: 'Inter', sans-serif; }
.mp-page-desc { font-size: 16px; color: #64748b; margin-bottom: 40px; font-family: 'Inter', sans-serif; }
.mp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.mp-form-section { margin-bottom: 28px; }
.mp-form-section-title { font-size: 18px; font-weight: 700; color: #1e293b; margin-bottom: 20px; font-family: 'Inter', sans-serif; display: flex; align-items: center; gap: 8px; }
.mp-form-section-title i { color: var(--primary-color); font-size: 16px; }
.mp-form-group { margin-bottom: 18px; }
.mp-form-label { display: block; font-size: 14px; font-weight: 600; color: #1e293b; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.mp-required { color: #ef4444; }
.mp-form-input { width: 100%; padding: 11px 14px; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 14px; font-family: 'Inter', sans-serif; box-sizing: border-box; transition: border-color .2s; background: #fff; color: #1e293b; }
.mp-form-input:focus { border-color: var(--primary-color); outline: none; box-shadow: 0 0 0 3px rgba(59,130,246,.1); }
.mp-textarea { min-height: 80px; resize: vertical; }
.mp-form-row { display: flex; gap: 16px; }
.mp-form-half { flex: 1; }

/* Hesap Türü Kartları */
.mp-hesap-turu-wrap { display: flex; gap: 16px; margin-bottom: 8px; }
.mp-hesap-turu-card { display: flex; align-items: center; gap: 10px; padding: 16px 24px; border: 2px solid #e2e8f0; border-radius: 10px; cursor: pointer; transition: all .2s; flex: 1; justify-content: center; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px; color: #64748b; }
.mp-hesap-turu-card input { display: none; }
.mp-hesap-turu-card i { font-size: 18px; }
.mp-hesap-turu-card.active { border-color: var(--primary-color); background: rgba(59,130,246,.05); color: var(--primary-color); }
.mp-hesap-turu-card:hover { border-color: var(--primary-color); }

/* Parola */
.mp-password-wrap { position: relative; }
.mp-password-wrap .mp-form-input { padding-right: 44px; }
.mp-password-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: #94a3b8; cursor: pointer; font-size: 16px; padding: 4px; }
.mp-generate-pass-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: #f1f5f9; border: 1px solid #e2e8f0; border-radius: 8px; color: #475569; font-size: 13px; font-weight: 600; font-family: 'Inter', sans-serif; cursor: pointer; transition: all .2s; margin-bottom: 16px; }
.mp-generate-pass-btn:hover { background: #e2e8f0; color: var(--primary-color); }
.mp-password-strength { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.mp-strength-bar { flex: 1; height: 6px; background: #e2e8f0; border-radius: 3px; overflow: hidden; }
.mp-strength-fill { height: 100%; border-radius: 3px; transition: width .3s, background .3s; width: 0; }
.mp-strength-text { font-size: 12px; font-weight: 600; font-family: 'Inter', sans-serif; min-width: 40px; }

/* Checkbox */
.mp-checkbox-wrap { margin-bottom: 14px; }
.mp-checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #475569; font-family: 'Inter', sans-serif; cursor: pointer; }
.mp-checkbox-label input { width: 18px; height: 18px; cursor: pointer; margin-top: 2px; flex-shrink: 0; accent-color: var(--primary-color); }
.mp-checkbox-label a { color: var(--primary-color); text-decoration: none; font-weight: 600; }
.mp-sozlesme-box { padding: 14px; background: #f8fafc; border-radius: 8px; }

/* Submit */
.mp-submit-btn { width: 100%; padding: 14px 24px; background: var(--primary-color); color: #fff; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; font-size: 16px; font-family: 'Inter', sans-serif; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; }
.mp-submit-btn:hover { opacity: .9; }
.mp-login-link { text-align: center; margin-top: 16px; font-size: 14px; color: #64748b; font-family: 'Inter', sans-serif; }
.mp-login-link a { color: var(--primary-color); font-weight: 600; text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
    .mp-form-grid { grid-template-columns: 1fr; gap: 20px; }
    .mp-form-row { flex-direction: column; gap: 0; }
    .mp-hesap-turu-wrap { flex-direction: column; }
    .mp-page-title { font-size: 24px; }
}

/* ========================================
   STEP-BASED REGISTRATION FORM
   Prefix: reg-
   ======================================== */
.reg-wrapper { max-width: 600px; margin: 0 auto; padding: 0 0 40px; }
.reg-header { text-align: center; margin-bottom: 32px; }
.reg-title { font-size: 28px; font-weight: 700; color: #1e293b; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.reg-subtitle { font-size: 15px; color: #64748b; font-family: 'Inter', sans-serif; margin: 0; }

/* Step Indicator */
.reg-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 32px; }
.reg-step { display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; z-index: 1; }
.reg-step span { font-size: 11px; font-weight: 600; color: #94a3b8; font-family: 'Inter', sans-serif; white-space: nowrap; }
.reg-step-num { width: 36px; height: 36px; border-radius: 50%; background: #e2e8f0; color: #94a3b8; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; font-family: 'Inter', sans-serif; transition: all .3s; }
.reg-step.active .reg-step-num { background: var(--primary-color); color: #fff; box-shadow: 0 0 0 4px rgba(59,130,246,.15); }
.reg-step.active span { color: var(--primary-color); }
.reg-step.done .reg-step-num { background: #22c55e; color: #fff; }
.reg-step.done span { color: #22c55e; }
.reg-step-line { flex: 1; height: 3px; background: #e2e8f0; min-width: 30px; max-width: 60px; margin: 0 6px; margin-bottom: 22px; border-radius: 2px; transition: background .3s; }
.reg-step-line.done { background: #22c55e; }

/* Panel */
.reg-panel { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 28px; animation: regFadeIn .3s ease; }
@keyframes regFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.reg-panel-title { font-size: 17px; font-weight: 700; color: #1e293b; margin-bottom: 24px; font-family: 'Inter', sans-serif; display: flex; align-items: center; gap: 8px; }
.reg-panel-title i { color: var(--primary-color); font-size: 16px; }

/* Hesap Türü Kartları — Kompakt */
.reg-type-wrap { display: flex; gap: 12px; margin-bottom: 20px; }
.reg-type-card { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 2px solid #e2e8f0; border-radius: 10px; cursor: pointer; transition: all .2s; flex: 1; position: relative; }
.reg-type-card input { display: none; }
.reg-type-icon { width: 38px; height: 38px; border-radius: 8px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; color: #64748b; font-size: 16px; transition: all .2s; flex-shrink: 0; }
.reg-type-info { flex: 1; }
.reg-type-info strong { display: block; font-size: 14px; font-weight: 600; color: #1e293b; font-family: 'Inter', sans-serif; }
.reg-type-info small { font-size: 12px; color: #94a3b8; font-family: 'Inter', sans-serif; }
.reg-type-check { color: #e2e8f0; font-size: 18px; transition: color .2s; }
.reg-type-card.active { border-color: var(--primary-color); background: rgba(59,130,246,.03); }
.reg-type-card.active .reg-type-icon { background: var(--primary-color); color: #fff; }
.reg-type-card.active .reg-type-check { color: var(--primary-color); }
.reg-type-card:hover { border-color: #cbd5e1; }

/* Kurumsal Fields */
.reg-kurumsal-fields { padding: 16px; background: #f8fafc; border-radius: 10px; margin-bottom: 8px; border: 1px solid #e2e8f0; }

/* Form Fields */
.reg-field { margin-bottom: 16px; }
.reg-field label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; font-family: 'Inter', sans-serif; }
.reg-req { color: #ef4444; }
.reg-field input, .reg-field select, .reg-field textarea { width: 100%; padding: 10px 12px; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 14px; font-family: 'Inter', sans-serif; box-sizing: border-box; transition: border-color .2s; background: #fff; color: #1e293b; }
.reg-field input:focus, .reg-field select:focus, .reg-field textarea:focus { border-color: var(--primary-color); outline: none; box-shadow: 0 0 0 3px rgba(59,130,246,.08); }
.reg-field textarea { min-height: 70px; resize: vertical; }
.reg-field input.reg-error, .reg-field select.reg-error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.08); }
.reg-field-row { display: flex; gap: 14px; }
.reg-field-row .reg-field { flex: 1; }

/* Password */
.reg-pw-wrap { position: relative; }
.reg-pw-wrap input { padding-right: 40px; }
.reg-pw-eye { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; color: #94a3b8; cursor: pointer; font-size: 15px; padding: 2px; }
.reg-pw-tools { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.reg-gen-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: #f1f5f9; border: 1px solid #e2e8f0; border-radius: 7px; color: #475569; font-size: 12px; font-weight: 600; font-family: 'Inter', sans-serif; cursor: pointer; transition: all .2s; }
.reg-gen-btn:hover { background: #e2e8f0; color: var(--primary-color); }
.reg-strength { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 120px; }
.reg-strength-bar { flex: 1; height: 5px; background: #e2e8f0; border-radius: 3px; overflow: hidden; }
.reg-strength-fill { height: 100%; border-radius: 3px; transition: width .3s, background .3s; width: 0; }
.reg-strength-text { font-size: 11px; font-weight: 600; font-family: 'Inter', sans-serif; min-width: 36px; }

/* Agreements */
.reg-agreements { padding: 16px; background: #f8fafc; border-radius: 10px; margin-bottom: 20px; }
.reg-check { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #475569; font-family: 'Inter', sans-serif; cursor: pointer; margin-bottom: 10px; }
.reg-check:last-child { margin-bottom: 0; }
.reg-check input { width: 16px; height: 16px; cursor: pointer; margin-top: 2px; flex-shrink: 0; accent-color: var(--primary-color); }
.reg-check a { color: var(--primary-color); text-decoration: none; font-weight: 600; }

/* Navigation */
.reg-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; }
.reg-btn-next, .reg-btn-prev, .reg-btn-submit { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; border-radius: 8px; font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif; cursor: pointer; transition: all .2s; border: none; }
.reg-btn-next { background: var(--primary-color); color: #fff; }
.reg-btn-next:hover { opacity: .9; }
.reg-btn-prev { background: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; }
.reg-btn-prev:hover { background: #e2e8f0; }
.reg-btn-submit { background: var(--primary-color); color: #fff; padding: 12px 28px; font-size: 15px; }
.reg-btn-submit:hover { opacity: .9; }

/* Login Link */
.reg-login-link { text-align: center; margin-top: 16px; font-size: 13px; color: #64748b; font-family: 'Inter', sans-serif; }
.reg-login-link a { color: var(--primary-color); font-weight: 600; text-decoration: none; }

/* Responsive */
@media (max-width: 640px) {
    .reg-wrapper { padding: 0 4px 30px; }
    .reg-panel { padding: 20px 16px; }
    .reg-type-wrap { flex-direction: column; }
    .reg-field-row { flex-direction: column; gap: 0; }
    .reg-steps { gap: 0; }
    .reg-step span { font-size: 10px; }
    .reg-step-num { width: 30px; height: 30px; font-size: 12px; }
    .reg-title { font-size: 22px; }
    .reg-pw-tools { flex-direction: column; align-items: flex-start; }
}

/* ========================================
   KASA (CHECKOUT) PAGE
   Prefix: kasa-
   ======================================== */
.kasa-page { background: #f8fafc; min-height: 80vh; padding: 40px 20px 60px; }
.kasa-container { max-width: 1200px; margin: 0 auto; }
.kasa-grid { display: grid; grid-template-columns: 1fr 380px; gap: 24px; align-items: start; }
.kasa-section { background: #fff; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); overflow: hidden; margin-bottom: 24px; }
.kasa-section-header { background: var(--primary-color); color: #fff; padding: 16px 24px; font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 10px; font-family: 'Inter', sans-serif; }
.kasa-section-body { padding: 24px; }
.kasa-form-row { margin-bottom: 20px; }
.kasa-form-row label { display: block; font-size: 14px; font-weight: 600; color: #1e293b; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.kasa-form-row input, .kasa-form-row textarea, .kasa-form-row select { width: 100%; padding: 12px 16px; border: 2px solid #e2e8f0; border-radius: 10px; font-size: 14px; transition: all .2s; font-family: 'Inter', sans-serif; box-sizing: border-box; background: #fff; color: #1e293b; }
.kasa-form-row input:focus, .kasa-form-row textarea:focus, .kasa-form-row select:focus { outline: none; border-color: var(--primary-color); }
.kasa-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kasa-req { color: #ef4444; }

/* Auth Tabs */
.kasa-auth-tabs { display: flex; border-bottom: 2px solid #e2e8f0; margin-bottom: 24px; }
.kasa-auth-tab { flex: 1; padding: 14px; text-align: center; font-size: 15px; font-weight: 600; color: #64748b; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all .2s; font-family: 'Inter', sans-serif; }
.kasa-auth-tab.active { color: var(--primary-color); border-color: var(--primary-color); }
.kasa-auth-content { display: none; }
.kasa-auth-content.active { display: block; }

/* Hesap Türü (kasa) */
.kasa-type-wrap { display: flex; gap: 10px; margin-bottom: 16px; }
.kasa-type-card { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 2px solid #e2e8f0; border-radius: 8px; cursor: pointer; transition: all .2s; flex: 1; font-family: 'Inter', sans-serif; }
.kasa-type-card input { display: none; }
.kasa-type-card i { font-size: 16px; color: #64748b; }
.kasa-type-card span { font-size: 13px; font-weight: 600; color: #475569; }
.kasa-type-card.active { border-color: var(--primary-color); background: rgba(59,130,246,.04); }
.kasa-type-card.active i, .kasa-type-card.active span { color: var(--primary-color); }
.kasa-type-card:hover { border-color: #cbd5e1; }
.kasa-kurumsal-fields { padding: 14px; background: #f8fafc; border-radius: 8px; margin-bottom: 16px; border: 1px solid #e2e8f0; }

/* Ödeme Yöntemi */
.kasa-odeme-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.kasa-odeme-item { display: flex; align-items: center; gap: 10px; padding: 14px 20px; border: 2px solid #e2e8f0; border-radius: 10px; cursor: pointer; transition: all .2s; font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif; }
.kasa-odeme-item:hover { border-color: var(--primary-color); }
.kasa-odeme-item.selected { border-color: var(--primary-color); background: #f0f9ff; }
.kasa-odeme-item input { display: none; }
.kasa-odeme-item i { font-size: 18px; color: var(--primary-color); }

/* Sözleşmeler */
.kasa-sozlesme-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f1f5f9; }
.kasa-sozlesme-item:last-child { border-bottom: none; }
.kasa-sozlesme-item input { width: 18px; height: 18px; margin-top: 2px; cursor: pointer; accent-color: var(--primary-color); }
.kasa-sozlesme-item label { font-size: 14px; color: #475569; cursor: pointer; font-family: 'Inter', sans-serif; }
.kasa-sozlesme-item a { color: var(--primary-color); text-decoration: underline; }

/* Sipariş Özeti */
.kasa-ozet { background: #fff; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); overflow: hidden; position: sticky; top: 20px; }
.kasa-ozet-header { background: var(--secondary-color, #059669); color: #fff; padding: 20px; text-align: center; font-size: 18px; font-weight: 700; font-family: 'Inter', sans-serif; }
.kasa-ozet-body { padding: 24px; }
.kasa-ozet-row { display: flex; justify-content: space-between; padding: 12px 0; font-size: 15px; border-bottom: 1px solid #f1f5f9; font-family: 'Inter', sans-serif; }
.kasa-ozet-row:last-child { border-bottom: none; }
.kasa-ozet-row span:last-child { font-weight: 600; color: var(--secondary-color, #059669); }
.kasa-ozet-total { display: flex; justify-content: space-between; padding: 16px 0; margin-top: 8px; border-top: 2px solid #1e293b; font-size: 20px; font-weight: 700; font-family: 'Inter', sans-serif; }
.kasa-ozet-total span:last-child { color: var(--secondary-color, #059669); }

/* Buttons */
.kasa-devam-btn { display: block; width: 100%; padding: 16px; background: var(--secondary-color, #059669); color: #fff; border: none; border-radius: 10px; font-size: 16px; font-weight: 700; cursor: pointer; text-align: center; margin-top: 16px; transition: all .2s; font-family: 'Inter', sans-serif; }
.kasa-devam-btn:hover { opacity: .9; }
.kasa-geri-btn { display: block; width: 100%; padding: 14px; background: #f1f5f9; color: #1e293b; border: 1px solid #e2e8f0; border-radius: 10px; font-size: 14px; font-weight: 600; text-align: center; text-decoration: none; margin-top: 12px; font-family: 'Inter', sans-serif; }
.kasa-geri-btn:hover { background: #e2e8f0; text-decoration: none; color: #1e293b; }

/* Hata & Info */
.kasa-hata-box { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; display: flex; align-items: center; gap: 10px; font-family: 'Inter', sans-serif; }
.kasa-info-box { padding: 14px 18px; border-radius: 10px; font-size: 14px; display: flex; align-items: center; gap: 10px; font-family: 'Inter', sans-serif; }
.kasa-info-box.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.kasa-info-box.warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.kasa-info-box.danger { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }

/* Adres */
.kasa-adres-box { background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 10px; padding: 16px; margin-bottom: 16px; transition: all .2s; }
.kasa-adres-box.selected { border-color: var(--primary-color); }
.kasa-adres-box p { margin: 0; font-size: 14px; color: #475569; line-height: 1.6; font-family: 'Inter', sans-serif; }
.kasa-adres-ekle { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-color); font-size: 14px; font-weight: 600; cursor: pointer; background: none; border: none; padding: 0; font-family: 'Inter', sans-serif; }
.kasa-adres-ekle:hover { text-decoration: underline; }

/* Fatura Bilgi Satırları */
.kasa-fatura-info { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.kasa-fatura-info-item { font-size: 13px; font-family: 'Inter', sans-serif; }
.kasa-fatura-info-item .lbl { color: #94a3b8; font-size: 11px; display: block; margin-bottom: 2px; }
.kasa-fatura-info-item .val { color: #1e293b; font-weight: 600; }

/* Modal */
.kasa-modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 1000; align-items: center; justify-content: center; }
.kasa-modal-overlay.show { display: flex; }
.kasa-modal-box { background: #fff; border-radius: 16px; width: 100%; max-width: 500px; margin: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.kasa-modal-header { padding: 20px 24px; border-bottom: 1px solid #e2e8f0; display: flex; align-items: center; justify-content: space-between; }
.kasa-modal-header h3 { margin: 0; font-size: 18px; font-weight: 700; color: #1e293b; font-family: 'Inter', sans-serif; }
.kasa-modal-close { background: none; border: none; font-size: 24px; color: #94a3b8; cursor: pointer; }
.kasa-modal-body { padding: 24px; }

/* POS Ödeme Uyarı */
.kasa-pos-uyari { background: #fffbeb; border: 1px solid #fde68a; border-radius: 10px; padding: 14px 18px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; font-size: 14px; color: #92400e; font-family: 'Inter', sans-serif; }

/* Responsive */
@media (max-width: 900px) {
    .kasa-grid { grid-template-columns: 1fr; }
    .kasa-ozet { position: static; }
    .kasa-form-grid { grid-template-columns: 1fr; }
    .kasa-type-wrap { flex-direction: column; }
    .kasa-fatura-info { grid-template-columns: 1fr; }
}

/* ========================================
   FATURA SAYFALARI (Müşteri Panel)
   Prefix: ft-
   ======================================== */
/* Faturalarım Tablo */
.ft-table { width: 100%; border-collapse: collapse; font-family: 'Inter', sans-serif; }
.ft-table th { padding: 12px; text-align: left; font-weight: 600; color: #64748b; font-size: 13px; border-bottom: 2px solid #e2e8f0; }
.ft-table th.center { text-align: center; }
.ft-table td { padding: 14px 12px; font-size: 14px; border-bottom: 1px solid #f1f5f9; }
.ft-table td.center { text-align: center; }
.ft-table td.bold { font-weight: 600; color: #1e293b; }
.ft-table td.muted { color: #64748b; }

/* Durum Badge */
.ft-badge { display: inline-block; padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.ft-badge.odenmedi { background: #fef3c7; color: #92400e; }
.ft-badge.odendi { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.ft-badge.iptal { background: #fef2f2; color: #991b1b; }

/* Fatura Detay Kart */
.ft-card { background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; overflow: hidden; }
.ft-card-body { padding: 40px; }
.ft-header { display: flex; justify-content: space-between; margin-bottom: 30px; }
.ft-header-left h4 { font-size: 12px; color: #94a3b8; font-weight: 600; margin-bottom: 8px; }
.ft-header-left .name { font-size: 15px; font-weight: 700; color: #1e293b; margin-bottom: 4px; }
.ft-header-left .info { font-size: 12px; color: #64748b; line-height: 1.6; }
.ft-header-right { text-align: right; }
.ft-logo { margin-bottom: 10px; }
.ft-logo img { max-height: 50px; max-width: 200px; }
.ft-header-right .firma { font-size: 16px; font-weight: 700; color: #1e293b; margin-bottom: 4px; }
.ft-header-right .firma-info { font-size: 12px; color: #64748b; line-height: 1.6; }
.ft-no { font-size: 22px; font-weight: 700; color: #1e293b; margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.ft-durum-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 2px solid #e2e8f0; }
.ft-tarihler { text-align: right; }
.ft-tarihler .label { font-size: 12px; color: #94a3b8; }
.ft-tarihler .value { font-size: 13px; font-weight: 600; color: #1e293b; margin-bottom: 6px; }
.ft-tarihler .value.danger { color: #dc2626; }

/* Durum Kutusu */
.ft-durum-box { display: inline-block; padding: 10px 20px; border-radius: 8px; text-align: center; }
.ft-durum-box.bekliyor { background: #fef3c7; }
.ft-durum-box.bekliyor .ft-durum-text { font-size: 16px; font-weight: 700; color: #92400e; letter-spacing: 1px; }
.ft-durum-box.bekliyor .ft-durum-sub { font-size: 11px; color: #a16207; margin-top: 2px; }
.ft-durum-box.odendi { background: #dcfce7; }
.ft-durum-box.odendi .ft-durum-text { font-size: 16px; font-weight: 700; color: #166534; letter-spacing: 1px; }
.ft-durum-box.odendi .ft-durum-sub { font-size: 11px; color: #15803d; margin-top: 2px; }
.ft-durum-box.iptal { background: #fef2f2; }
.ft-durum-box.iptal .ft-durum-text { font-size: 16px; font-weight: 700; color: #991b1b; letter-spacing: 1px; }
.ft-durum-box.iptal .ft-durum-sub { font-size: 11px; color: #b91c1c; margin-top: 2px; }

/* Ödeme Yöntemi Tag */
.ft-yontem-tag { display: inline-block; padding: 6px 14px; background: #f0f9ff; border: 1px solid #bae6fd; border-radius: 6px; margin-top: 8px; }
.ft-yontem-tag .lbl { font-size: 11px; color: #64748b; }
.ft-yontem-tag .val { font-size: 12px; color: #0369a1; font-weight: 600; }

/* Butonlar */
.ft-butonlar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.ft-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 6px; font-size: 12px; font-weight: 600; text-decoration: none; border: 1px solid #e2e8f0; background: #f8fafc; color: #475569; cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; }
.ft-btn:hover { background: #e2e8f0; }
.ft-btn.primary { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.ft-btn.purple { background: #8b5cf6; color: #fff; border-color: #8b5cf6; }

/* Fatura Tablo */
.ft-items-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-family: 'Inter', sans-serif; }
.ft-items-table th { padding: 10px 12px; text-align: left; font-size: 12px; font-weight: 600; color: #64748b; border-bottom: 2px solid #e2e8f0; }
.ft-items-table th:last-child { text-align: right; }
.ft-items-table td { padding: 12px; font-size: 13px; color: #1e293b; border-bottom: 1px solid #f1f5f9; }
.ft-items-table td:last-child { text-align: right; font-weight: 600; }

/* Toplam */
.ft-toplam { display: flex; justify-content: flex-end; }
.ft-toplam-box { width: 280px; }
.ft-toplam-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; font-family: 'Inter', sans-serif; }
.ft-toplam-row .lbl { color: #64748b; }
.ft-toplam-row .val { font-weight: 600; color: #1e293b; }
.ft-toplam-row.total { border-top: 2px solid #1e293b; margin-top: 4px; padding-top: 12px; }
.ft-toplam-row.total .lbl { font-size: 14px; font-weight: 700; }
.ft-toplam-row.total .val { font-size: 16px; font-weight: 700; }

/* Boş Durum */
.ft-empty { text-align: center; padding: 80px 20px; }
.ft-empty i { font-size: 40px; margin-bottom: 12px; display: block; color: #cbd5e1; }
.ft-empty h3 { font-size: 18px; color: #666; margin-bottom: 6px; font-family: 'Inter', sans-serif; }
.ft-empty p { font-size: 14px; color: #999; margin-bottom: 20px; font-family: 'Inter', sans-serif; }

/* ===== CPN: CUSTOMER PANEL LAYOUT ===== */
.cpn-wrap { background: #f1f5f9; padding: 32px 20px; min-height: 600px; }
.cpn-inner { max-width: 1600px; margin: 0 auto; padding: 0; }
.cpn-grid {
    display: grid !important;
    grid-template-columns: 270px 1fr !important;
    gap: 28px !important;
    align-items: start !important;
}
.cpn-grid > *:first-child { grid-column: 1; }
.cpn-grid > *:nth-child(2) { grid-column: 2; min-width: 0; }

/* ===== CPN SIDEBAR ===== */
.cpn-side {
    width: 270px; box-sizing: border-box;
    background: #fff; border-radius: 10px; border: 1px solid #e2e8f0;
    overflow: hidden; position: sticky; top: 20px;
    font-family: 'Inter', sans-serif;
}
.cpn-side *, .cpn-side *::before, .cpn-side *::after { box-sizing: border-box; }

/* Profil Kart */
.cpn-profile { padding: 24px 16px; text-align: center; border-bottom: 1px solid #f1f5f9; }
.cpn-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--secondary-color); margin: 0 auto 12px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; color: #fff; font-size: 22px; font-weight: 700;
}
.cpn-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cpn-uname { margin: 0 0 2px; font-size: 15px; font-weight: 700; color: #1e293b; }
.cpn-email { margin: 0 0 8px; font-size: 12px; color: #64748b; word-break: break-all; }
.cpn-badge {
    display: inline-block; padding: 3px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 700; letter-spacing: .3px;
}
.cpn-badge-aktif { background: #d1fae5; color: #065f46; }
.cpn-badge-bayi { background: #ede9fe; color: #6d28d9; }

/* Profil Detay Satırları */
.cpn-info { padding: 12px 16px; border-bottom: 1px solid #f1f5f9; }
.cpn-info-row {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 0; font-size: 13px; color: #475569;
}
.cpn-info-row i { width: 16px; text-align: center; font-size: 13px; color: #94a3b8; flex-shrink: 0; }
.cpn-info-row .cpn-val { margin-left: auto; font-weight: 600; color: #1e293b; }
.cpn-info-row .cpn-val-green { margin-left: auto; font-weight: 700; color: var(--primary-color); }

/* Info Label/Value yapısı */
.cpn-info-label {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: #64748b; white-space: nowrap;
}
.cpn-info-label i { width: 16px; text-align: center; font-size: 13px; color: #94a3b8; flex-shrink: 0; }
.cpn-info-val {
    margin-left: auto; font-size: 13px; font-weight: 600; color: #1e293b;
    text-align: right; white-space: nowrap;
}
.cpn-info-green { color: var(--primary-color); font-weight: 700; }

/* Menü */
.cpn-nav { padding: 8px 0; }
.cpn-nav-label {
    font-size: 10px; font-weight: 700; color: #94a3b8;
    text-transform: uppercase; letter-spacing: .6px;
    padding: 12px 16px 4px; display: block;
}
.cpn-nav-item { position: relative; }
.cpn-nav-link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; font-size: 13px; font-weight: 500;
    color: #475569; text-decoration: none;
    border-left: 3px solid transparent;
    transition: all .15s ease; cursor: pointer;
    font-family: 'Inter', sans-serif;
    background: none; border-top: none; border-right: none; border-bottom: none;
    width: 100%; text-align: left;
}
.cpn-nav-link:hover { color: var(--primary-color); background: #f8fafc; text-decoration: none; }
.cpn-nav-link.active {
    color: var(--primary-color); background: #f0fdf4;
    border-left-color: var(--primary-color); font-weight: 600;
}
.cpn-nav-link i { width: 18px; text-align: center; font-size: 14px; color: #94a3b8; flex-shrink: 0; }
.cpn-nav-link:hover i, .cpn-nav-link.active i { color: var(--primary-color); }
.cpn-nav-count {
    margin-left: auto; background: #fee2e2; color: #dc2626;
    font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 10px;
}

/* Toggle */
.cpn-nav-toggle::after {
    content: ''; width: 0; height: 0;
    border-left: 4px solid transparent; border-right: 4px solid transparent;
    border-top: 4px solid #94a3b8; margin-left: auto; transition: transform .2s;
}
.cpn-nav-item.open > .cpn-nav-toggle::after { transform: rotate(180deg); border-top-color: var(--primary-color); }

/* Alt Menü */
.cpn-nav-sub { display: none; background: #f8fafc; }
.cpn-nav-item.open > .cpn-nav-sub { display: block; }
.cpn-nav-sub .cpn-nav-link { padding: 8px 16px 8px 46px; font-size: 12px; border-left: none; color: #64748b; }
.cpn-nav-sub .cpn-nav-link:hover { color: var(--primary-color); background: #f1f5f9; }
.cpn-nav-sub .cpn-nav-link.active { color: var(--primary-color); font-weight: 600; }

/* Çıkış */
.cpn-logout {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; font-size: 13px; font-weight: 500;
    color: #ef4444; text-decoration: none;
    border-top: 1px solid #f1f5f9; margin-top: 4px;
    transition: all .15s ease; font-family: 'Inter', sans-serif;
}
.cpn-logout:hover { background: #fef2f2; color: #dc2626; text-decoration: none; }
.cpn-logout i { width: 18px; text-align: center; font-size: 14px; }

/* ===== CPN CONTENT CARD ===== */
.cpn-card { background: #fff; padding: 24px; border-radius: 10px; border: 1px solid #e2e8f0; }
.cpn-card-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid #f1f5f9;
}
.cpn-card-title { margin: 0; font-size: 16px; font-weight: 700; color: #1e293b; font-family: 'Inter', sans-serif; }

/* Fatura Ödeme Seçenekleri */
.ft-odeme-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.ft-odeme-card { display: block; padding: 16px; border: 2px solid #e2e8f0; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; font-family: 'Inter', sans-serif; }
.ft-odeme-card:hover { border-color: var(--primary-color); }
.ft-odeme-card input[type="radio"] { margin-right: 8px; accent-color: var(--primary-color); }
.ft-odeme-card .ft-odeme-inner { display: flex; align-items: center; gap: 8px; }
.ft-odeme-card .ft-odeme-inner i { font-size: 20px; color: var(--primary-color); }
.ft-odeme-card .ft-odeme-name { font-weight: 600; color: #1e293b; font-size: 14px; }
.ft-odeme-card .ft-odeme-desc { font-size: 12px; color: #64748b; }

/* Fatura Özet Mini */
.ft-ozet-mini { background: #f8fafc; padding: 16px; border-radius: 8px; margin-bottom: 20px; }
.ft-ozet-mini-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-family: 'Inter', sans-serif; }
.ft-ozet-mini-row .lbl { color: #64748b; font-size: 14px; }
.ft-ozet-mini-row .val { color: #1e293b; font-weight: 600; font-size: 14px; }
.ft-ozet-mini-row.total { padding-top: 12px; border-top: 2px solid #1e293b; margin-bottom: 0; }
.ft-ozet-mini-row.total .lbl { font-weight: 700; font-size: 16px; }
.ft-ozet-mini-row.total .val { color: var(--primary-color); font-weight: 700; font-size: 18px; }

/* ===== CPN CIRCULAR PROGRESS ===== */
.cpn-usage-circles { display: flex; gap: 24px; justify-content: center; align-items: flex-start; margin-bottom: 20px; }
.cpn-circle-item { display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 1; }
.cpn-circle-wrap { position: relative; width: 110px; height: 110px; }
.cpn-circle-svg { width: 110px; height: 110px; transform: rotate(-90deg); }
.cpn-circle-bg { fill: none; stroke: #e2e8f0; stroke-width: 8; }
.cpn-circle-fg { fill: none; stroke-width: 8; stroke-linecap: round; transition: stroke-dashoffset .6s ease; }
.cpn-circle-fg--disk { stroke: var(--primary-color); }
.cpn-circle-fg--traffic { stroke: #0ea5e9; }
.cpn-circle-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    text-align: center; line-height: 1.2;
}
.cpn-circle-pct { display: block; font-size: 22px; font-weight: 700; color: #1e293b; font-family: 'Inter', sans-serif; }
.cpn-circle-sub { display: block; font-size: 10px; color: #94a3b8; font-family: 'Inter', sans-serif; }
.cpn-circle-label { font-size: 13px; font-weight: 600; color: #1e293b; font-family: 'Inter', sans-serif; text-align: center; }
.cpn-circle-detail { font-size: 11px; color: #64748b; font-family: 'Inter', sans-serif; text-align: center; }

@media (max-width: 900px) {
    .cpn-grid { grid-template-columns: 1fr; }
    .cpn-side { width: 100%; position: static; }
    .ft-header { flex-direction: column; gap: 20px; }
    .ft-header-right { text-align: left; }
    .ft-odeme-grid { grid-template-columns: 1fr; }
    .cpn-usage-circles { flex-direction: row; gap: 16px; }
    .cpn-circle-wrap { width: 90px; height: 90px; }
    .cpn-circle-svg { width: 90px; height: 90px; }
    .cpn-circle-pct { font-size: 18px; }
}


/* ===== CPN RESELLER INFO ===== */
.cpn-reseller-info { background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; overflow: hidden; margin-bottom: 24px; }
.cpn-reseller-header { padding: 14px 18px; background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%); color: #fff; font-size: 14px; font-weight: 700; font-family: 'Inter', sans-serif; display: flex; align-items: center; gap: 8px; }
.cpn-reseller-body { padding: 18px; }
.cpn-reseller-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.cpn-reseller-card { display: flex; align-items: center; gap: 12px; background: #f8fafc; border-radius: 10px; padding: 14px; border: 1px solid #e2e8f0; }
.cpn-reseller-card-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.cpn-reseller-card-label { font-size: 11px; color: #94a3b8; font-family: 'Inter', sans-serif; margin-bottom: 2px; }
.cpn-reseller-card-value { font-size: 14px; font-weight: 700; color: #1e293b; font-family: 'Inter', sans-serif; }
.cpn-reseller-badge { display: inline-block; padding: 3px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; }
.cpn-reseller-badge--success { background: #f0fdf4; color: #16a34a; }
.cpn-reseller-badge--warning { background: #fef3c7; color: #92400e; }
.cpn-reseller-whm-btn { display: block; padding: 12px; background: #7c3aed; color: #fff; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; font-family: 'Inter', sans-serif; text-align: center; transition: background .2s; }
.cpn-reseller-whm-btn:hover { background: #6d28d9; color: #fff; }
.cpn-reseller-whm-btn i { margin-right: 6px; }
@media (max-width: 600px) { .cpn-reseller-grid { grid-template-columns: 1fr; } }
