/* ===========================================
   LOCKED THEME - MAIN STYLESHEET
   Orius V2 E-Pin Platform - ENES AYDENIZ
   =========================================== */

/* ===========================================
   1. CSS VARIABLES
   =========================================== */
:root {
    --background: #141414;
    --bg-white: #1a1a1a;
    --bg-white-2: #242424;
    --text-color: #ffffff;
    --text-color-muted: rgba(255, 255, 255, 0.75);
    --text-gray: #9a9a9a;
    --text-faded: rgba(255, 255, 255, 0.5);
    --text-subtle: rgba(255, 255, 255, 0.3);
    --border: #2c2c2c;
    --bs-border-color: #2a2a2a;

    --bs-blue: #fd7e14;
    --bs-blue-hover: #d96203;
    --bs-blue-gradient: #e06d0f;
    --success-color: #10bf7c;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --twitch-color: #6441a5;
    --star-color: #ffde00;

    --bs-blue-overlay: rgba(253, 126, 20, 0.1);
    --bs-blue-overlay-02: rgba(253, 126, 20, 0.02);
    --bs-blue-overlay-03: rgba(253, 126, 20, 0.03);
    --bs-blue-overlay-04: rgba(253, 126, 20, 0.04);
    --bs-blue-overlay-05: rgba(253, 126, 20, 0.05);
    --bs-blue-overlay-08: rgba(253, 126, 20, 0.08);
    --bs-blue-overlay-12: rgba(253, 126, 20, 0.12);
    --bs-blue-overlay-15: rgba(253, 126, 20, 0.15);
    --bs-blue-overlay-20: rgba(253, 126, 20, 0.2);
    --bs-blue-overlay-25: rgba(253, 126, 20, 0.25);
    --bs-blue-overlay-30: rgba(253, 126, 20, 0.3);
    --bs-blue-overlay-35: rgba(253, 126, 20, 0.35);
    --bs-blue-overlay-40: rgba(253, 126, 20, 0.4);
    --bs-blue-overlay-50: rgba(253, 126, 20, 0.5);
    --bs-blue-overlay-60: rgba(253, 126, 20, 0.6);
    --bs-blue-overlay-90: rgba(253, 126, 20, 0.9);
    --bs-blue-overlay-95: rgba(253, 126, 20, 0.95);

    --ck-color-base-border: #3a3a3a;
    --ck-color-base-background: #222222;
    --ck-color-base-text: #f9f9f9;
    --input-bg: #1e1e1e;
    --input-border: #3a3a3a;
    --input-border-hover: #505050;
    --input-placeholder: #6a6a6a;
    --overlay-1: rgba(255, 255, 255, 0.01);
    --overlay-2: rgba(255, 255, 255, 0.02);
    --overlay-3: rgba(255, 255, 255, 0.03);
    --overlay-4: rgba(255, 255, 255, 0.04);
    --overlay-5: rgba(255, 255, 255, 0.05);
    --overlay-6: rgba(255, 255, 255, 0.06);
    --overlay-8: rgba(255, 255, 255, 0.08);
    --overlay-10: rgba(255, 255, 255, 0.1);
    --overlay-15: rgba(255, 255, 255, 0.15);
    --overlay-20: rgba(255, 255, 255, 0.2);
    --overlay-30: rgba(255, 255, 255, 0.3);
}

html[data-theme="light"] {
    --background: #f5f5f5;
    --bg-white: #ffffff;
    --bg-white-2: #ffffff;
    --text-color: #1a1a1a;
    --text-color-muted: rgba(26, 26, 26, 0.75);
    --text-gray: #666666;
    --text-faded: rgba(26, 26, 26, 0.5);
    --text-subtle: rgba(26, 26, 26, 0.3);
    --border: #e0e0e0;
    --bs-border-color: #d5d5d5;
    --ck-color-base-border: #d0d0d0;
    --ck-color-base-background: #ffffff;
    --ck-color-base-text: #1a1a1a;
    --input-bg: #ffffff;
    --input-border: #d0d0d0;
    --input-border-hover: #a0a0a0;
    --input-placeholder: #999999;
    --overlay-1: rgba(0, 0, 0, 0.005);
    --overlay-2: rgba(0, 0, 0, 0.01);
    --overlay-3: rgba(0, 0, 0, 0.015);
    --overlay-4: rgba(0, 0, 0, 0.02);
    --overlay-5: rgba(0, 0, 0, 0.02);
    --overlay-6: rgba(0, 0, 0, 0.025);
    --overlay-8: rgba(0, 0, 0, 0.03);
    --overlay-10: rgba(0, 0, 0, 0.08);
    --overlay-15: rgba(0, 0, 0, 0.1);
    --overlay-20: rgba(0, 0, 0, 0.15);
    --overlay-30: rgba(0, 0, 0, 0.2);
}

/* BLUE - Mavi Tema */
html[data-color="blue"] {
    --bs-blue: #2563eb;
    --bs-blue-hover: #1d4ed8;
    --bs-blue-gradient: #1e40af;
    --bs-blue-overlay: rgba(37, 99, 235, 0.1);
    --bs-blue-overlay-02: rgba(37, 99, 235, 0.02);
    --bs-blue-overlay-03: rgba(37, 99, 235, 0.03);
    --bs-blue-overlay-04: rgba(37, 99, 235, 0.04);
    --bs-blue-overlay-05: rgba(37, 99, 235, 0.05);
    --bs-blue-overlay-08: rgba(37, 99, 235, 0.08);
    --bs-blue-overlay-12: rgba(37, 99, 235, 0.12);
    --bs-blue-overlay-15: rgba(37, 99, 235, 0.15);
    --bs-blue-overlay-20: rgba(37, 99, 235, 0.2);
    --bs-blue-overlay-25: rgba(37, 99, 235, 0.25);
    --bs-blue-overlay-30: rgba(37, 99, 235, 0.3);
    --bs-blue-overlay-35: rgba(37, 99, 235, 0.35);
    --bs-blue-overlay-40: rgba(37, 99, 235, 0.4);
    --bs-blue-overlay-50: rgba(37, 99, 235, 0.5);
    --bs-blue-overlay-60: rgba(37, 99, 235, 0.6);
    --bs-blue-overlay-90: rgba(37, 99, 235, 0.9);
    --bs-blue-overlay-95: rgba(37, 99, 235, 0.95);
}

/* RED - Kırmızı Tema */
html[data-color="red"] {
    --bs-blue: #dc2626;
    --bs-blue-hover: #b91c1c;
    --bs-blue-gradient: #991b1b;
    --bs-blue-overlay: rgba(220, 38, 38, 0.1);
    --bs-blue-overlay-02: rgba(220, 38, 38, 0.02);
    --bs-blue-overlay-03: rgba(220, 38, 38, 0.03);
    --bs-blue-overlay-04: rgba(220, 38, 38, 0.04);
    --bs-blue-overlay-05: rgba(220, 38, 38, 0.05);
    --bs-blue-overlay-08: rgba(220, 38, 38, 0.08);
    --bs-blue-overlay-12: rgba(220, 38, 38, 0.12);
    --bs-blue-overlay-15: rgba(220, 38, 38, 0.15);
    --bs-blue-overlay-20: rgba(220, 38, 38, 0.2);
    --bs-blue-overlay-25: rgba(220, 38, 38, 0.25);
    --bs-blue-overlay-30: rgba(220, 38, 38, 0.3);
    --bs-blue-overlay-35: rgba(220, 38, 38, 0.35);
    --bs-blue-overlay-40: rgba(220, 38, 38, 0.4);
    --bs-blue-overlay-50: rgba(220, 38, 38, 0.5);
    --bs-blue-overlay-60: rgba(220, 38, 38, 0.6);
    --bs-blue-overlay-90: rgba(220, 38, 38, 0.9);
    --bs-blue-overlay-95: rgba(220, 38, 38, 0.95);
}

/* GREEN - Yeşil Tema */
html[data-color="green"] {
    --bs-blue: #16a34a;
    --bs-blue-hover: #15803d;
    --bs-blue-gradient: #166534;
    --bs-blue-overlay: rgba(22, 163, 74, 0.1);
    --bs-blue-overlay-02: rgba(22, 163, 74, 0.02);
    --bs-blue-overlay-03: rgba(22, 163, 74, 0.03);
    --bs-blue-overlay-04: rgba(22, 163, 74, 0.04);
    --bs-blue-overlay-05: rgba(22, 163, 74, 0.05);
    --bs-blue-overlay-08: rgba(22, 163, 74, 0.08);
    --bs-blue-overlay-12: rgba(22, 163, 74, 0.12);
    --bs-blue-overlay-15: rgba(22, 163, 74, 0.15);
    --bs-blue-overlay-20: rgba(22, 163, 74, 0.2);
    --bs-blue-overlay-25: rgba(22, 163, 74, 0.25);
    --bs-blue-overlay-30: rgba(22, 163, 74, 0.3);
    --bs-blue-overlay-35: rgba(22, 163, 74, 0.35);
    --bs-blue-overlay-40: rgba(22, 163, 74, 0.4);
    --bs-blue-overlay-50: rgba(22, 163, 74, 0.5);
    --bs-blue-overlay-60: rgba(22, 163, 74, 0.6);
    --bs-blue-overlay-90: rgba(22, 163, 74, 0.9);
    --bs-blue-overlay-95: rgba(22, 163, 74, 0.95);
}

/* PURPLE - Mor Tema */
html[data-color="purple"] {
    --bs-blue: #7c3aed;
    --bs-blue-hover: #6d28d9;
    --bs-blue-gradient: #5b21b6;
    --bs-blue-overlay: rgba(124, 58, 237, 0.1);
    --bs-blue-overlay-02: rgba(124, 58, 237, 0.02);
    --bs-blue-overlay-03: rgba(124, 58, 237, 0.03);
    --bs-blue-overlay-04: rgba(124, 58, 237, 0.04);
    --bs-blue-overlay-05: rgba(124, 58, 237, 0.05);
    --bs-blue-overlay-08: rgba(124, 58, 237, 0.08);
    --bs-blue-overlay-12: rgba(124, 58, 237, 0.12);
    --bs-blue-overlay-15: rgba(124, 58, 237, 0.15);
    --bs-blue-overlay-20: rgba(124, 58, 237, 0.2);
    --bs-blue-overlay-25: rgba(124, 58, 237, 0.25);
    --bs-blue-overlay-30: rgba(124, 58, 237, 0.3);
    --bs-blue-overlay-35: rgba(124, 58, 237, 0.35);
    --bs-blue-overlay-40: rgba(124, 58, 237, 0.4);
    --bs-blue-overlay-50: rgba(124, 58, 237, 0.5);
    --bs-blue-overlay-60: rgba(124, 58, 237, 0.6);
    --bs-blue-overlay-90: rgba(124, 58, 237, 0.9);
    --bs-blue-overlay-95: rgba(124, 58, 237, 0.95);
}

/* PINK - Pembe Tema */
html[data-color="pink"] {
    --bs-blue: #ec4899;
    --bs-blue-hover: #db2777;
    --bs-blue-gradient: #be185d;
    --bs-blue-overlay: rgba(236, 72, 153, 0.1);
    --bs-blue-overlay-02: rgba(236, 72, 153, 0.02);
    --bs-blue-overlay-03: rgba(236, 72, 153, 0.03);
    --bs-blue-overlay-04: rgba(236, 72, 153, 0.04);
    --bs-blue-overlay-05: rgba(236, 72, 153, 0.05);
    --bs-blue-overlay-08: rgba(236, 72, 153, 0.08);
    --bs-blue-overlay-12: rgba(236, 72, 153, 0.12);
    --bs-blue-overlay-15: rgba(236, 72, 153, 0.15);
    --bs-blue-overlay-20: rgba(236, 72, 153, 0.2);
    --bs-blue-overlay-25: rgba(236, 72, 153, 0.25);
    --bs-blue-overlay-30: rgba(236, 72, 153, 0.3);
    --bs-blue-overlay-35: rgba(236, 72, 153, 0.35);
    --bs-blue-overlay-40: rgba(236, 72, 153, 0.4);
    --bs-blue-overlay-50: rgba(236, 72, 153, 0.5);
    --bs-blue-overlay-60: rgba(236, 72, 153, 0.6);
    --bs-blue-overlay-90: rgba(236, 72, 153, 0.9);
    --bs-blue-overlay-95: rgba(236, 72, 153, 0.95);
}

/* CYAN - Camgöbeği Tema */
html[data-color="cyan"] {
    --bs-blue: #06b6d4;
    --bs-blue-hover: #0891b2;
    --bs-blue-gradient: #0e7490;
    --bs-blue-overlay: rgba(6, 182, 212, 0.1);
    --bs-blue-overlay-02: rgba(6, 182, 212, 0.02);
    --bs-blue-overlay-03: rgba(6, 182, 212, 0.03);
    --bs-blue-overlay-04: rgba(6, 182, 212, 0.04);
    --bs-blue-overlay-05: rgba(6, 182, 212, 0.05);
    --bs-blue-overlay-08: rgba(6, 182, 212, 0.08);
    --bs-blue-overlay-12: rgba(6, 182, 212, 0.12);
    --bs-blue-overlay-15: rgba(6, 182, 212, 0.15);
    --bs-blue-overlay-20: rgba(6, 182, 212, 0.2);
    --bs-blue-overlay-25: rgba(6, 182, 212, 0.25);
    --bs-blue-overlay-30: rgba(6, 182, 212, 0.3);
    --bs-blue-overlay-35: rgba(6, 182, 212, 0.35);
    --bs-blue-overlay-40: rgba(6, 182, 212, 0.4);
    --bs-blue-overlay-50: rgba(6, 182, 212, 0.5);
    --bs-blue-overlay-60: rgba(6, 182, 212, 0.6);
    --bs-blue-overlay-90: rgba(6, 182, 212, 0.9);
    --bs-blue-overlay-95: rgba(6, 182, 212, 0.95);
}

/* YELLOW - Sarı Tema */
html[data-color="yellow"] {
    --bs-blue: #eab308;
    --bs-blue-hover: #ca8a04;
    --bs-blue-gradient: #a16207;
    --bs-blue-overlay: rgba(234, 179, 8, 0.1);
    --bs-blue-overlay-02: rgba(234, 179, 8, 0.02);
    --bs-blue-overlay-03: rgba(234, 179, 8, 0.03);
    --bs-blue-overlay-04: rgba(234, 179, 8, 0.04);
    --bs-blue-overlay-05: rgba(234, 179, 8, 0.05);
    --bs-blue-overlay-08: rgba(234, 179, 8, 0.08);
    --bs-blue-overlay-12: rgba(234, 179, 8, 0.12);
    --bs-blue-overlay-15: rgba(234, 179, 8, 0.15);
    --bs-blue-overlay-20: rgba(234, 179, 8, 0.2);
    --bs-blue-overlay-25: rgba(234, 179, 8, 0.25);
    --bs-blue-overlay-30: rgba(234, 179, 8, 0.3);
    --bs-blue-overlay-35: rgba(234, 179, 8, 0.35);
    --bs-blue-overlay-40: rgba(234, 179, 8, 0.4);
    --bs-blue-overlay-50: rgba(234, 179, 8, 0.5);
    --bs-blue-overlay-60: rgba(234, 179, 8, 0.6);
    --bs-blue-overlay-90: rgba(234, 179, 8, 0.9);
    --bs-blue-overlay-95: rgba(234, 179, 8, 0.95);
}

/* TEAL - Deniz Mavisi Tema */
html[data-color="teal"] {
    --bs-blue: #14b8a6;
    --bs-blue-hover: #0d9488;
    --bs-blue-gradient: #0f766e;
    --bs-blue-overlay: rgba(20, 184, 166, 0.1);
    --bs-blue-overlay-02: rgba(20, 184, 166, 0.02);
    --bs-blue-overlay-03: rgba(20, 184, 166, 0.03);
    --bs-blue-overlay-04: rgba(20, 184, 166, 0.04);
    --bs-blue-overlay-05: rgba(20, 184, 166, 0.05);
    --bs-blue-overlay-08: rgba(20, 184, 166, 0.08);
    --bs-blue-overlay-12: rgba(20, 184, 166, 0.12);
    --bs-blue-overlay-15: rgba(20, 184, 166, 0.15);
    --bs-blue-overlay-20: rgba(20, 184, 166, 0.2);
    --bs-blue-overlay-25: rgba(20, 184, 166, 0.25);
    --bs-blue-overlay-30: rgba(20, 184, 166, 0.3);
    --bs-blue-overlay-35: rgba(20, 184, 166, 0.35);
    --bs-blue-overlay-40: rgba(20, 184, 166, 0.4);
    --bs-blue-overlay-50: rgba(20, 184, 166, 0.5);
    --bs-blue-overlay-60: rgba(20, 184, 166, 0.6);
    --bs-blue-overlay-90: rgba(20, 184, 166, 0.9);
    --bs-blue-overlay-95: rgba(20, 184, 166, 0.95);
}


/* ===========================================
   2. BASE STYLES
   =========================================== */
html, body {
    background-color: var(--background) !important;
    color: var(--text-color);
    min-height: 100%;
    scroll-behavior: smooth;
}

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

html a, body a {
    text-decoration: none;
}

/* Icon line height fix */
i.fi {
    line-height: 0.75 !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.fw-medium {
    font-weight: 500;
}

.text-blue {
    color: var(--bs-blue);
}

.list-inline li {
    display: inline-block;
}

/* ===========================================
   3. LAYOUT - TOPNAV
   =========================================== */
.lc-topnav {
    background-color: var(--bg-white);
    padding: 12px 0;
    position: relative;
    z-index: 99;
}

.lc-topnav .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.lc-topnav .links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.lc-topnav .links a {
    color: var(--text-color-muted);
    transition: 0.2s;
}

.lc-topnav .links a:hover {
    color: var(--text-color);
}

.lc-topnav .social-media a {
    font-size: 20px;
}

.lc-topnav .links.right {
    gap: 16px;
}

.lc-topnav .links.right a {
    font-size: 13px;
    font-weight: 500;
}

.lc-topnav .links.right a.button {
    background-color: var(--bs-blue);
    padding: 6px 8px;
    border-radius: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ===========================================
   4. LAYOUT - HEADER
   =========================================== */
.lc-header {
    background-color: var(--bg-white);
    padding: 12px 0 20px 0;
    position: relative;
    z-index: 100;
}

.lc-header .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.lc-header .logo-area {
    height: 55px;
}

.lc-header .logo-area img {
    height: 100%;
    width: auto;
}

/* Search Box */
.lc-header .search {
    flex: 1;
    position: relative;
}

.lc-header .search .search-box {
    position: relative;
}

.lc-header .search .search-box .form-control {
    height: 50px;
}

.lc-header .search .search-box .icon {
    font-size: 20px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Search Results */
.lc-search-results {
    padding: 0 20px;
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    width: 100%;
    z-index: 98;
}

.lc-search-results .lc-sr-area {
    margin: 20px 0;
}

.lc-search-results .lc-sr-area .lc-sr-title {
    font-weight: 500;
    margin-bottom: 12px;
}

.lc-search-results .lc-sr-area .lc-sr-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: var(--bg-white-2);
    margin-top: 8px;
    padding: 12px;
    border-radius: 6px;
    color: var(--text-color);
    transition: 0.2s;
}

.lc-search-results .lc-sr-area .lc-sr-category .lc-src-name {
    font-weight: 500;
}

.lc-search-results .lc-sr-area .lc-sr-category i {
    font-size: 24px;
    opacity: 0.6;
}

.lc-search-results .lc-sr-area .lc-sr-category:hover,
.lc-search-results .lc-sr-area .lc-sr-product:hover {
    transform: scale(0.98);
}

.lc-search-results .lc-sr-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 18px;
}

.lc-search-results .lc-sr-product {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: var(--text-color);
    transition: 0.2s;
}

.lc-search-results .lc-sr-product img {
    border-radius: 6px;
    width: 80px;
    min-width: 80px;
}

.lc-search-results .lc-sr-product .lc-srpc-title {
    font-weight: 500;
    margin-bottom: 8px;
}

.lc-search-results .lc-sr-product .lc-srpc-price {
    display: flex;
    flex-direction: column;
}

.lc-search-results .lc-sr-product .lc-srpc-price-new {
    font-size: 18px;
    font-weight: 600;
}

.lc-search-results .lc-sr-product .lc-srpc-price-old {
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.8;
}

/* Header Right Area */
.lc-header .right-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.lc-header .right-area .right-link {
    background-color: var(--bg-white-2);
    border: 1px solid var(--border);
    color: var(--text-color);
    padding: 6px 12px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border-radius: 8px;
    transition: 0.2s;
}

.lc-header .right-area .right-link:hover {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
}

.lc-header .right-area .right-link .icon {
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lc-header .right-area .right-link.user {
    padding: 6px 16px;
}

.lc-header .right-area .right-link.user .icon {
    font-size: 20px;
}

.lc-header .right-area .right-link.main {
    background-color: var(--bs-blue);
    border: 1px solid var(--bs-blue);
    color: #fff;
}

.lc-header .right-area .right-link.overlay {
    background-color: var(--bs-blue-overlay);
    border: 1px solid var(--bs-blue-overlay);
    color: var(--bs-blue);
}

.lc-header .right-area .right-link.overlay:hover {
    background-color: var(--bs-blue);
    border-color: var(--bs-blue);
    color: #fff;
}

.lc-header .right-area .right-link .content .key {
    font-weight: 500;
    font-size: 15px;
}

.lc-header .right-area .right-link .content .value {
    font-size: 13px;
}

.lc-header .right-area .right-link.square {
    height: 50px;
    width: 50px;
    position: relative;
    justify-content: center;
    padding: 0;
}

.lc-header .right-area .right-link.theme-toggle {
    overflow: hidden;
    transition: all 0.2s ease;
}

.lc-header .right-area .right-link.theme-toggle:hover {
    background: var(--bs-blue-overlay-15);
    border-color: var(--bs-blue-overlay-30);
}

.lc-header .right-area .right-link.theme-toggle:hover .theme-icon {
    color: var(--bs-blue);
}

.lc-header .right-area .right-link.theme-toggle .theme-icon {
    display: inline-block;
    transition: transform 0.4s ease;
}

.lc-header .right-area .right-link.theme-toggle .theme-icon.rotating {
    animation: iconRotate 0.4s ease;
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.lc-header .right-area .right-link .number {
    position: absolute;
    right: -6px;
    top: -6px;
    background-color: var(--bs-blue);
    height: 18px;
    min-width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/* Notification Menu */
.lc-header .right-area .lc-nav-notification-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 18px);
    padding: 12px;
    width: 380px;
}

.lc-header .right-area .lc-nav-notification-menu::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    top: -8px;
}

.lc-header .right-area .lc-nav-notification-menu .lc-nnm-title {
    font-weight: 500;
    margin-bottom: 12px;
    text-align: center;
    font-size: 18px;
}

.lc-nnm-item {
    background-color: var(--bg-white-2);
    padding: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    color: var(--text-color) !important;
    margin-bottom: 12px;
    border-radius: 6px;
    transition: 0.2s;
}

.lc-nnm-item:hover {
    transform: scale(0.98);
}

.lc-nnm-item img {
    width: 64px;
    min-width: 64px;
    height: 64px;
    object-fit: contain;
}

.lc-nnm-item .lc-nnm-item-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
}

.lc-nnm-item .lc-nnm-item-text {
    font-size: 14px;
}

.lc-nnm-item .lc-nnm-item-date {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    font-size: 13px;
    opacity: 0.8;
}

.lc-nav-notification-menu .lc-nnm-link {
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    padding: 4px;
    opacity: 0.7;
    transition: 0.2s;
}

.lc-nav-notification-menu .lc-nnm-link:hover {
    opacity: 0.9;
}

.lc-nav-notification-menu .lc-nnm-empty {
    font-size: 18px;
    font-weight: 500;
    border: 2px solid var(--border);
    border-radius: 6px;
    padding: 12px 4px;
}

.lc-nav-notification-menu .lc-nnm-empty .icon {
    font-size: 42px;
}

/* User Dropdown Menu */
.lc-header .right-area .lc-user-dropdown-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 18px);
    padding: 14px;
    width: 250px;
}

.lc-header .right-area .lc-user-dropdown-menu .lc-udm-balance {
    background-color: var(--bs-blue-overlay);
    color: var(--bs-blue);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 6px;
    margin-bottom: 6px;
}

.lc-header .right-area .lc-user-dropdown-menu .lc-udm-balance .lc-udmb-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.lc-header .right-area .lc-user-dropdown-menu .lc-udm-balance .lc-udmb-left i {
    font-size: 22px;
}

.lc-header .right-area .lc-user-dropdown-menu .lc-udm-balance .add {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-blue);
    color: var(--bg-white);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
}

.lc-header .right-area .lc-user-dropdown-menu .lc-udm-balance .add:hover {
    background: var(--bs-blue-hover);
}

.lc-header .right-area .lc-user-dropdown-menu .lc-udm-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 12px;
}

.lc-header .right-area .lc-user-dropdown-menu .lc-udm-list a {
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    transition: 0.2s;
}

.lc-header .right-area .lc-user-dropdown-menu .lc-udm-list a i {
    font-size: 20px;
    opacity: 0.8;
}

.lc-header .right-area .lc-user-dropdown-menu .lc-udm-list a:hover {
    color: var(--bs-blue);
}

.lc-dropdown-open-menu {
    display: none;
    z-index: 200 !important;
}

/* ===========================================
   5. LAYOUT - NAVBAR
   =========================================== */
.lc-navbar {
    background-color: var(--bg-white);
    position: relative;
    z-index: 99;
}

.lc-navbar .list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.lc-navbar .list li {
    flex: 1;
}

.lc-navbar .list li .link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-bottom: 2px solid var(--bs-blue);
    color: var(--text-color);
    font-weight: 600;
    gap: 8px;
    transition: 0.2s;
    text-align: center;
}

.lc-navbar .list li .link:hover {
    color: var(--bs-blue);
}

/* Navbar Dropdown */
.lc-navbar .lc-navbar-dropdown-menu-area {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 8px);
    display: none;
    z-index: 100;
}

.lc-navbar .lc-navbar-dropdown-menu {
    background-color: var(--bg-white);
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--bg-white);
}

.lc-navbar .lc-navbar-dropdown-menu .grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-gap: 20px;
}

.lc-navbar .lc-navbar-dropdown-link {
    display: block;
    text-align: center;
    color: var(--text-color);
    transition: 0.2s;
}

.lc-navbar .lc-navbar-dropdown-link:hover {
    transform: scale(1.03);
}

.lc-navbar .lc-navbar-dropdown-link img {
    border-radius: 8px;
    display: block;
    margin-bottom: 8px;
}

.lc-navbar .lc-navbar-dropdown-link .name {
    font-weight: 500;
    font-size: 14px;
}

/* ===========================================
   6. LAYOUT - MOBILE MENU
   =========================================== */

/* Mobile Menu Overlay */
.lc-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lc-mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Container */
.lc-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background: var(--bg-white);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lc-mobile-menu.active {
    transform: translateX(0);
}

/* Mobile Menu Header */
.lc-mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-white);
    min-height: 65px;
}

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

.lc-mm-logo img {
    height: 36px;
    width: auto;
}

.lc-mm-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.lc-mm-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-white);
    border: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lc-mm-close:hover {
    background: var(--danger-bg);
    color: var(--danger-color);
}

.lc-mm-close i {
    font-size: 0.875rem;
}

/* Mobile Menu User Section */
.lc-mm-user {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-bg) 0%, transparent 100%);
    border-bottom: 1px solid var(--border);
}

.lc-mm-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.lc-mm-user-info {
    flex: 1;
}

.lc-mm-user-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-color);
    margin-bottom: 0.125rem;
}

.lc-mm-user-balance {
    font-size: 0.8125rem;
    color: var(--success-color);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.lc-mm-user-balance i {
    font-size: 0.75rem;
}

.lc-mm-add-balance {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--success-bg);
    color: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lc-mm-add-balance:hover {
    background: var(--success-color);
    color: white;
    transform: scale(1.05);
}

/* Mobile Menu Auth Buttons */
.lc-mm-auth {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.lc-mm-auth .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.lc-mm-auth .btn-primary {
    background: var(--primary);
    color: white;
    border: none;
}

.lc-mm-auth .btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border);
}

/* Mobile Menu Search */
.lc-mm-search {
    padding: 0.875rem 1.25rem;
    position: relative;
}

.lc-mm-search input {
    width: 100%;
    padding: 0.75rem 1rem;
    padding-left: 2.75rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-white-2);
    color: var(--text-color);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.lc-mm-search input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
}

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

.lc-mm-search i {
    position: absolute;
    left: 2.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Menu Navigation */
.lc-mm-nav {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.lc-mm-nav::-webkit-scrollbar {
    width: 4px;
}

.lc-mm-nav::-webkit-scrollbar-thumb {
    background: var(--bg-white);
    border-radius: 2px;
}

.lc-mm-nav-title {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    padding: 0.75rem 1.25rem 0.5rem;
}

/* Mobile Menu Links */
.lc-mm-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.lc-mm-link:hover {
    background: var(--bg-white);
    color: var(--primary);
}

.lc-mm-link-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lc-mm-link-content img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.lc-mm-link-content span {
    font-size: 0.9rem;
    font-weight: 500;
}

.lc-mm-link > i {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Mobile Menu Icon Badges */
.lc-mm-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.lc-mm-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.lc-mm-icon.blue {
    background: var(--bs-blue-overlay);
    color: var(--bs-blue);
}

.lc-mm-icon.orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

/* Mobile Menu Accordion */
.lc-mm-accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.lc-mm-accordion-btn:hover {
    background: var(--bg-white);
}

.lc-mm-accordion-btn .accordion-arrow {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.lc-mm-accordion.active .accordion-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.lc-mm-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--bg-white);
}

.lc-mm-accordion.active .lc-mm-accordion-content {
    max-height: 500px;
}

.lc-mm-sub-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem 0.625rem 2rem;
    color: var(--text-muted);
    font-size: 0.8125rem;
    transition: all 0.2s ease;
}

.lc-mm-sub-link:hover {
    color: var(--primary);
    background: var(--bg-white);
}

.lc-mm-sub-link img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: cover;
}

.lc-mm-sub-link.main-cat {
    color: var(--primary);
    font-weight: 500;
}

.lc-mm-sub-link.main-cat i {
    font-size: 0.8rem;
}

/* Mobile Menu Divider */
.lc-mm-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 1.25rem;
}

/* Mobile Menu Footer */
.lc-mm-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--bg-white);
}

.lc-mm-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.lc-mm-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-white);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lc-mm-social a:hover {
    background: var(--primary-bg);
    color: var(--primary);
    transform: translateY(-2px);
}

.lc-mm-social a i {
    font-size: 1rem;
}

.lc-mm-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 10px;
    background: var(--danger-bg);
    color: var(--danger-color);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.lc-mm-logout:hover {
    background: var(--danger-color);
    color: white;
}

/* ===========================================
   6.1 LAYOUT - MOBILE BAR
   =========================================== */
.lc-mobile-bar {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border);
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 62px;
    z-index: 10;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.3);
        display: none;
    }

.lc-mobile-bar .grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lc-mobile-bar .grid .link {
    text-align: center;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.lc-mobile-bar .grid .link .icon i {
    font-size: 24px;
}

.lc-mobile-bar .grid .link .text {
    font-size: 11px;
}

/* ===========================================
   7. LAYOUT - FOOTER
   =========================================== */
.lc-footer {
    background-color: var(--bg-white);
}

.lc-footer .footer-body {
    padding: 40px 0;
}

.lc-footer .footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lc-footer .footer-title i {
    color: var(--bs-blue);
    font-size: 20px;
}

/* Footer Address Box */
.lc-footer .footer-address-box {
    background: var(--bg-white-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
}

.lc-footer .address-box-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.lc-footer .address-box-title i {
    color: var(--bs-blue);
    font-size: 1.125rem;
}

.lc-footer .address-box-content {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.lc-footer .address-text {
    font-size: 0.8125rem;
    color: var(--text-color-muted);
    line-height: 1.5;
    margin: 0;
}

.lc-footer .address-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-color-muted);
    transition: color 0.2s;
}

.lc-footer .address-link i {
    color: var(--bs-blue);
    font-size: 0.875rem;
}

.lc-footer .address-link:hover {
    color: var(--bs-blue);
}

.lc-footer .list li a {
    color: var(--text-color-muted);
    font-size: 14px;
    line-height: 28px;
    transition: 0.2s;
}

.lc-footer .list li a:hover {
    color: var(--text-color);
}

.lc-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.lc-footer .footer-bottom .logo {
    height: 55px;
}

.lc-footer .social-media {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lc-footer .social-media a {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    transition: 0.2s;
}

.lc-footer .social-media a:hover {
    transform: scale(1.1);
}

.lc-footer .social-media a.fb { background-color: #1877f2; }
.lc-footer .social-media a.ig { background-color: #e1306c; }
.lc-footer .social-media a.yt { background-color: #ff0000; }
.lc-footer .social-media a.dc { background-color: #5865f2; }
.lc-footer .social-media a.tw { background-color: #000; }

.lc-footer .footer-contact .content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
}

.lc-footer .footer-contact .content .link-contact {
    flex: 1;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--bg-white-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    transition: 0.2s;
}

.lc-footer .footer-contact .content .link-contact i {
    font-size: 24px;
}

.lc-footer .footer-contact .content .link-contact:hover {
    border-color: var(--bs-blue);
    background-color: var(--bs-blue-overlay);
    color: var(--bs-blue);
}

.lc-footer .footer-alt {
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.lc-footer .footer-alt strong {
    font-weight: 600 !important;
}

.lc-footer .etbis-area {
    text-align: right;
}

.lc-footer .img-etbis {
    height: 80px;
    opacity: 0.8;
}

/* ===========================================
   8. COMPONENTS - CARDS
   =========================================== */
.lc-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.lc-card .lc-card-body {
    padding: 25px;
}

.lc-card .lc-card-tabs {
    padding-left: 24px;
    border-bottom: 1px solid var(--border);
}

.lc-card .lc-card-tabs .list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.lc-card .lc-card-tabs .list .link {
    color: var(--text-gray);
    padding: 18px 0;
    border-bottom: 2px solid transparent;
    font-weight: 500;
    transition: 0.2s;
}

.lc-card .lc-card-tabs .list .link.active,
.lc-card .lc-card-tabs .list .link:hover {
    border-bottom-color: var(--bs-blue);
    color: var(--text-color);
}

/* ===========================================
   9. COMPONENTS - BUTTONS
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 50px;
    padding: 0 18px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
    border: none;
}

.btn i {
    font-size: 18px;
}

.btn.btn-sm {
    height: 42px;
    padding: 0 12px;
    font-size: 13px;
}

.btn.btn-lg {
    height: 60px;
    padding: 0 24px;
    font-size: 18px;
}

.btn.btn-primary {
    background-color: var(--bs-blue);
    border-color: var(--bs-blue);
    color: #fff;
}

.btn.btn-primary:hover {
    background-color: var(--bs-blue-hover);
    border-color: var(--bs-blue-hover);
}

.btn.btn-opacity-primary {
    background-color: var(--bs-blue-overlay);
    color: var(--bs-blue);
}

.btn.btn-opacity-primary:hover {
    background-color: var(--bs-blue);
    color: #fff;
}

.btn.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: #fff;
}

.btn.btn-success:hover {
    background-color: #0d9d68;
    border-color: #0d9d68;
}

.btn.btn-opacity-success {
    background-color: rgba(16, 191, 124, 0.1);
    color: var(--success-color);
}

.btn.btn-opacity-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
}

.btn.btn-opacity-danger:hover {
    background-color: var(--danger-color);
    color: #fff;
}

.btn.btn-twitch {
    background-color: var(--twitch-color);
    border-color: var(--twitch-color);
    color: #fff;
}

.btn.btn-twitch:hover {
    background-color: #5a3a94;
    border-color: #5a3a94;
}

.btn.btn-white {
    background-color: var(--bg-white);
    color: var(--text-color);
    border: 1px solid var(--border);
}

.btn.btn-white:hover {
    opacity: 0.7;
}

/* ===========================================
   10. COMPONENTS - FORMS
   =========================================== */
.form-control, .form-select {
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--text-color);
    padding: 10px 16px;
    border-radius: 8px;
    height: 48px;
    transition: 0.2s;
}

.form-control:hover, .form-control:focus,
.form-select:hover, .form-select:focus {
    border-color: var(--input-border-hover);
    background-color: var(--input-bg);
    color: var(--text-color);
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--input-placeholder);
}

.form-select {
    cursor: pointer;
}

form label {
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group-text {
    background-color: var(--bg-white-2);
    border: 1px solid var(--border);
    color: var(--text-color);
}

/* ===========================================
   11. SECTIONS - SLIDER
   =========================================== */
.lc-slider-blur {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 500px;
    object-fit: cover;
    z-index: 1;
    filter: blur(30px);
    pointer-events: none;
}

.lc-slider-area {
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.lc-slider-area .swiper-button-next {
    right: 4px !important;
}

.lc-slider-area .swiper-button-prev {
    left: 4px !important;
}

.lc-slider-area .swiper-button-next,
.lc-slider-area .swiper-button-prev {
    color: var(--text-color) !important;
}

.lc-slider-area .swiper-button-next::after,
.lc-slider-area .swiper-button-prev::after {
    font-size: 30px;
}

.lc-swiper-home {
    border-radius: 8px;
    overflow: hidden;
}

.lc-swiper-home-item {
    padding-bottom: 34%;
    position: relative;
    display: block;
    transition: 0.2s;
}

.lc-swiper-home-item img,
.lc-slider-home-mini img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.lc-slider-home-mini {
    padding-bottom: 52.5%;
    position: relative;
    display: block;
    margin-bottom: 24px;
    transition: 0.2s;
}

.lc-slider-home-mini:last-child {
    margin-bottom: 0;
}

.lc-slider-home-mini:hover,
.lc-swiper-home-item:hover {
    transform: scale(1.02);
}

.lc-slider-alt-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 20px;
    margin-top: 20px;
}

.lc-slider-alt-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.2s;
}

.lc-slider-alt-item:hover {
    transform: scale(1.03);
}

/* Slider Alt Grid - Responsive */
/* ===========================================
   12. SECTIONS - COMMON
   =========================================== */
.lc-section {
    padding-bottom: 30px;
}

.lc-section-head {
    background-color: var(--bg-white);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.lc-section-head .left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.lc-section-head .left .icon {
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background-color: var(--bs-blue-overlay);
    color: var(--bs-blue);
    border-radius: 6px;
}

.lc-section-head .left .icon.image {
    padding: 6px;
}

.lc-section-head .left .icon.image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lc-section-head .left .title {
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}

/* Swiper Navigation Buttons */
.lc-swiper-pc-btn, .lc-swiper-ph-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: 0.2s;
    cursor: pointer;
    z-index: 10;
}

.lc-swiper-pc-btn:hover, .lc-swiper-ph-btn:hover {
    opacity: 0.7;
}

.lc-swiper-pc-prev, .lc-swiper-ph-prev {
    left: -40px;
}

.lc-swiper-pc-next, .lc-swiper-ph-next {
    right: -40px;
}

/* ===========================================
   13. SECTIONS - POPULAR CATEGORIES
   =========================================== */
.lc-popular-categories {
    padding-bottom: 30px;
}

.lc-categories-item {
    text-align: center;
    color: var(--text-color);
    transition: 0.2s;
}

.lc-categories-item:hover {
    transform: scale(1.03);
}

.lc-categories-item .img {
    margin-bottom: 10px;
}

.lc-categories-item .img img {
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
}

.lc-categories-item .name {
    font-weight: 500;
    font-size: 14px;
}

.lc-swiper-popular-categories .lc-categories-item:hover {
    transform: scale(0.97);
}

/* ===========================================
   14. SECTIONS - PRODUCTS
   =========================================== */
.lc-product-item {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    margin-bottom: 15px;
}

.lc-product-item .img {
    display: block;
    overflow: hidden;
    position: relative;
    padding-bottom: 125%;
}

.lc-product-item .img .img-aspect {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.lc-product-item .img img {
    transition: 0.2s;
    object-fit: cover;
}

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

.lc-product-item .content {
    padding: 14px;
}

.lc-product-item .content .product-name {
    font-size: 14px;
    display: block;
    color: var(--text-color);
    font-weight: 500;
    transition: 0.2s;
    height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lc-product-item .content .product-name:hover {
    color: var(--bs-blue);
}

.lc-product-item .price {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 50px;
}

.lc-product-item .price .price-new {
    font-weight: 500;
    font-size: 18px;
}

.lc-product-item .price .price-old {
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.9;
    color: var(--danger-color);
    font-size: 15px;
}

.lc-product-item .price-discount {
    background-color: rgba(16, 191, 124, 0.1);
    color: var(--success-color);
    padding: 3px 5px 3px 3px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 2px;
}

.lc-product-item .price-discount i {
    font-size: 16px;
}

.lc-product-item .seller {
    margin-top: 10px;
    background-color: var(--bg-white-2);
    color: var(--text-color);
    padding: 4px 10px;
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.lc-product-item .seller .img-seller {
    height: 28px;
    width: 28px;
    min-width: 28px;
    object-fit: cover;
    border-radius: 100%;
    margin-right: 8px;
}

.lc-product-item .seller .seller-content .key {
    color: var(--text-gray);
    font-size: 12px;
    margin-bottom: -2px;
}

.lc-product-item .seller .seller-content .value {
    font-size: 13px;
}

.lc-product-item .seller .icon {
    color: var(--text-gray);
    right: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.lc-product-item .btn-add {
    height: 40px;
    font-weight: 500;
    margin-top: 10px;
    font-size: 15px;
    gap: 8px;
}

/* ===========================================
   15. SECTIONS - CUSTOMER COMMENTS
   =========================================== */
.lc-customer-comments {
    padding: 20px 0 30px 0;
}

.lc-customer-comments .lc-ccs-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.lc-customer-comments .lc-ccs-head {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 20px;
}

.lc-customer-comments .lc-ccs-head .logo {
    height: 60px;
}

.lc-customer-comments .lc-ccs-head .content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.lc-customer-comments .lc-ccs-head .content .icon {
    height: 50px;
    width: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: var(--bs-blue);
    color: #fff;
    font-size: 24px;
}

.lc-customer-comments .lc-ccs-head .content .title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
}

.lc-customer-comments .lc-ccs-head .content p {
    margin-bottom: 0;
    color: var(--text-gray);
}

.lc-customer-comments .lc-ccs-head .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.lc-swiper-comments-btn {
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    width: 46px;
    border-radius: 6px;
    font-size: 20px;
    transition: 0.2s;
    cursor: pointer;
}

.lc-swiper-comments-btn:hover {
    background-color: var(--bs-blue);
    color: #fff;
}

.lc-comments-item {
    padding: 20px;
}

.lc-comments-item .user {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.lc-comments-item .user .icon {
    height: 44px;
    width: 44px;
    background-color: var(--bs-blue-overlay);
    color: var(--bs-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 6px;
}

.lc-comments-item .user .name {
    font-weight: 500;
    opacity: 0.8;
}

.lc-comments-item .user .stars {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
    color: var(--star-color);
}

.lc-comments-item .comment {
    margin: 20px 0;
}

.lc-comments-item .comment p {
    font-size: 15px;
    line-height: 24px;
}

.lc-comments-item .product {
    border: 1px solid var(--border);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border-radius: 6px;
}

.lc-comments-item .product img {
    width: 40px;
    border-radius: 4px;
    display: block;
}

.lc-comments-item .product .name {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
}

.lc-customer-comments .flex-alt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 20px 20px 20px;
}

.lc-customer-comments .flex-alt .logo {
    height: 60px;
}

.lc-customer-comments .flex-alt .stats {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

.lc-customer-comments .flex-alt .stats .subtitle {
    font-size: 18px;
}

.lc-customer-comments .flex-alt .stats i {
    font-size: 52px;
    color: var(--star-color);
}

/* ===========================================
   16. SECTIONS - STREAMERS
   =========================================== */
.lc-home-streamers {
    padding: 30px 0 50px 0;
}

.lc-home-streamers .lc-section-head .icon {
    background-color: rgba(100, 65, 165, 0.1);
    color: var(--twitch-color);
}

.lc-swiper-streamers-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: 0.2s;
    cursor: pointer;
}

.lc-swiper-streamers-btn:hover {
    opacity: 0.7;
}

.lc-swiper-streamers-prev {
    left: -40px;
}

.lc-swiper-streamers-next {
    right: -40px;
}

.lc-streamer-item {
    border-radius: 8px;
    padding-bottom: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: block;
    color: var(--text-color);
}

.lc-streamer-item::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    transition: 0.2s;
}

.lc-streamer-item:hover::before {
    background-color: rgba(0, 0, 0, 0.8);
}

.lc-streamer-item .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.lc-streamer-item .content img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 100%;
}

.lc-streamer-item .content .name {
    font-weight: 500;
    color: var(--text-color);
}

/* ===========================================
   STREAMERS PAGE - MODERN
   =========================================== */

/* Streamer Card */
.lc-streamer-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.lc-streamer-card:hover {
    border-color: var(--twitch-color);
    box-shadow: 0 8px 24px rgba(100, 65, 165, 0.15);
    transform: translateY(-4px);
}

.streamer-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

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

.streamer-avatar .avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--lc-bg-tertiary);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lc-text-secondary);
    font-size: 2.5rem;
}

.lc-streamer-card:hover .streamer-avatar img,
.lc-streamer-card:hover .streamer-avatar .avatar-placeholder {
    border-color: var(--twitch-color);
}

.streamer-platform {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: var(--twitch-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.875rem;
    border: 2px solid var(--bg-white);
}

.streamer-info {
    margin-bottom: 1rem;
}

.streamer-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.streamer-username {
    font-size: 0.8125rem;
    color: var(--text-subtle);
}

.btn-streamer-donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--twitch-color);
    color: #fff;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-streamer-donate:hover {
    background: #5a3a94;
    color: #fff;
    transform: scale(1.02);
}

/* Streamer Detail Page */
.lc-streamer-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.streamer-header-avatar {
    position: relative;
    flex-shrink: 0;
}

.streamer-header-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--twitch-color);
}

.streamer-header-avatar .avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-white-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-subtle);
    border: 3px solid var(--border);
}

.streamer-header-avatar .platform-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: var(--twitch-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    border: 3px solid var(--bg-white);
}

.streamer-header-info {
    flex: 1;
}

.streamer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.streamer-channel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--twitch-color);
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.streamer-channel:hover {
    color: #5a3a94;
}

.streamer-socials {
    display: flex;
    gap: 0.5rem;
}

.streamer-socials .social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-color-muted);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}

.streamer-socials .social-link:hover {
    background: var(--bs-blue);
    border-color: var(--bs-blue);
    color: #fff;
}

.streamer-socials .social-link.twitch:hover {
    background: var(--twitch-color);
    border-color: var(--twitch-color);
}

.streamer-socials .social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.streamer-socials .social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.streamer-socials .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #e6683c;
}

.streamer-socials .social-link.discord:hover {
    background: #5865f2;
    border-color: #5865f2;
}

/* Donation Card */
.lc-donation-card {
    padding: 0 !important;
    overflow: hidden;
}

.donation-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--twitch-color) 0%, #5a3a94 100%);
    color: #fff;
}

.donation-card-header i {
    font-size: 1.5rem;
}

.donation-card-header h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.donation-form {
    padding: 1.5rem;
}

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

.donation-form .form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.donation-form .form-label i {
    color: var(--twitch-color);
}

.donation-amount-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-amounts {
    display: flex;
    gap: 0.5rem;
}

.quick-amount {
    flex: 1;
    padding: 0.5rem;
    background: var(--bg-white-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-amount:hover,
.quick-amount.active {
    background: var(--twitch-color);
    border-color: var(--twitch-color);
    color: #fff;
}

.form-check-custom {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-check-custom input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--twitch-color);
    cursor: pointer;
}

.form-check-custom label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-color-muted);
    cursor: pointer;
}

.form-check-custom label i {
    font-size: 1rem;
}

.donation-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    font-size: 0.8125rem;
    color: var(--warning-color);
    margin-bottom: 1.25rem;
}

.btn-donate-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--twitch-color) 0%, #5a3a94 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-donate-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(100, 65, 165, 0.3);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-color-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--twitch-color);
}

/* Streamer Pages Responsive */
@media (max-width: 768px) {
    .lc-streamer-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .streamer-socials {
        justify-content: center;
    }
    
    .quick-amounts {
        flex-wrap: wrap;
    }
    
    .quick-amount {
        flex: 0 0 calc(50% - 0.25rem);
    }
}

/* ===========================================
   17. SECTIONS - BLOG
   =========================================== */
.lc-blog-item {
    height: calc(100% - 24px);
    margin-bottom: 24px;
}

.lc-blog-item .img {
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: block;
}

.lc-blog-item .img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.2s;
}

.lc-blog-item .img:hover img {
    transform: scale(1.03);
}

.lc-blog-item .content {
    padding: 20px;
}

.lc-blog-item .content .title {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.lc-blog-item .content .desc {
    font-size: 15px;
    line-height: 22px;
    color: var(--text-color-muted);
    margin-bottom: 12px;
}

.lc-blog-item .content .date {
    color: var(--text-faded);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

/* ===========================================
   18. UTILITIES
   =========================================== */
.bg-success {
    background-color: var(--success-color) !important;
}

.bg-primary {
    background-color: var(--bs-blue) !important;
}

.fs-15 { font-size: 15px; }
.fs-18 { font-size: 18px; }

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.badge {
    font-weight: 500;
    border-radius: 50px;
}

.mb-24 {
    margin-bottom: 24px;
}

/* ===========================================
   19. RESPONSIVE - TABLET & MOBILE
   =========================================== */
/* ===========================================
   20. PAGE: PRODUCTS / CATEGORY
   =========================================== */

/* Category Header Section */
.lc-category-header-section {
    padding: 1.5rem 0 2rem;
    }

/* Breadcrumb Override for Products */
.lc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.lc-breadcrumb a {
    color: var(--text-color-muted);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.lc-breadcrumb a:hover {
    color: var(--text-color);
}

.lc-breadcrumb .separator {
    color: var(--text-subtle);
}

.lc-breadcrumb .current {
    color: var(--success-color);
    font-weight: 600;
}

/* Category Hero Horizontal */
.lc-category-hero-horizontal {
    border-radius: 16px;
    padding: 2rem;
}

.hero-info-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.category-icon {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-white);
    padding: 1rem;
    flex-shrink: 0;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.hero-desc {
    font-size: 0.9375rem;
    color: var(--text-color-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 1rem;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 191, 124, 0.1);
    border: 1px solid rgba(16, 191, 124, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-color);
}

.stat-badge i {
    color: var(--success-color);
    font-size: 1rem;
}

.stat-badge strong {
    color: var(--success-color);
    font-weight: 700;
}

/* Horizontal Navigation */
.hero-navigation-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-horizontal-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-horizontal-section.children-section {
    flex: 1;
    min-width: 300px;
}

.nav-section-title {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-subtle);
    letter-spacing: 1px;
}

.nav-divider {
    font-size: 1.5rem;
    color: var(--text-subtle);
    align-self: center;
    margin-top: 1.25rem;
}

.nav-horizontal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.9375rem;
}

.nav-horizontal-link:hover {
    background: var(--bg-white);
    border-color: rgba(16, 191, 124, 0.4);
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 191, 124, 0.15);
}

.nav-horizontal-link.parent {
    background: linear-gradient(135deg, rgba(16, 191, 124, 0.12) 0%, rgba(13, 159, 103, 0.06) 100%);
    border-color: rgba(16, 191, 124, 0.25);
}

.nav-horizontal-link.parent:hover {
    background: linear-gradient(135deg, rgba(16, 191, 124, 0.2) 0%, rgba(13, 159, 103, 0.12) 100%);
    border-color: rgba(16, 191, 124, 0.5);
}

.nav-horizontal-link.current {
    background: linear-gradient(135deg, var(--success-color) 0%, #0d9f67 100%);
    border-color: transparent;
    color: #fff;
    cursor: default;
    box-shadow: 0 4px 12px rgba(16, 191, 124, 0.3);
}

.nav-horizontal-link.current:hover {
    transform: none;
}

.nav-horizontal-link img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.nav-horizontal-link span {
    font-weight: 600;
}

.nav-horizontal-link i {
    color: var(--text-color);
    font-size: 1.125rem;
}

.nav-horizontal-link.child {
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    background: var(--bg-white);
}

.nav-horizontal-link.child img {
    width: 28px;
    height: 28px;
}

.nav-children-horizontal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.child-separator {
    color: var(--text-subtle);
    font-weight: 600;
    font-size: 1.125rem;
}

/* Sidebar */
.lc-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-filter-card,
.sidebar-info-card {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.filter-header h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.filter-header h3 i {
    color: var(--success-color);
    font-size: 1.125rem;
}

.btn-clear {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: none;
    border: none;
    color: var(--text-faded);
    font-size: 0.8125rem;
    cursor: pointer;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-clear:hover {
    background: var(--bg-white);
    color: var(--success-color);
}

.filter-section {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

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

.section-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    color: var(--text-color);
}

.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-range-inputs input {
    flex: 1;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--text-color);
    padding: 0.625rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

.price-range-inputs input:focus {
    outline: none;
    border-color: var(--success-color);
    background: var(--input-bg);
}

.range-separator {
    color: var(--text-subtle);
    font-weight: 600;
}

.filter-select {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--text-color);
    padding: 0.625rem;
    border-radius: 8px;
    font-size: 0.875rem;
    width: 100%;
}

.filter-select:focus {
    outline: none;
    border-color: var(--success-color);
    background: var(--bg-white);
}

/* Info Badge Item */
.info-badge-item {
        display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem;
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.info-badge-item:last-child {
    margin-bottom: 0;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(16, 191, 124, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 1.25rem;
    color: var(--success-color);
}

.badge-content strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
    color: var(--text-color);
}

.badge-content small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-faded);
}

/* Sibling Categories in Sidebar */
.sibling-categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sibling-category-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color-muted);
    transition: all 0.3s;
    font-size: 0.875rem;
}

.sibling-category-item:hover {
    background: var(--bg-white);
    border-color: rgba(16, 191, 124, 0.3);
    color: var(--text-color);
    transform: translateX(2px);
}

.sibling-category-item.active {
    background: linear-gradient(135deg, rgba(16, 191, 124, 0.2) 0%, rgba(13, 159, 103, 0.1) 100%);
    border-color: var(--success-color);
    color: var(--success-color);
    font-weight: 600;
}

.sibling-category-item img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.sibling-category-item span {
    flex: 1;
    font-weight: 500;
}

.sibling-category-item i {
    color: var(--text-subtle);
    font-size: 1rem;
}

.sibling-category-item.active i,
.sibling-category-item:hover i {
    color: var(--success-color);
}

/* Enhanced Toolbar */
.lc-products-toolbar-enhanced {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.toolbar-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-filter-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--success-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
}

.results-info {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
}

.results-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
}

.results-label {
    font-size: 0.875rem;
    color: var(--text-color-muted);
}

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 42px;
    padding: 0 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.action-btn:hover {
    background: var(--bg-white);
    border-color: var(--success-color);
    color: var(--success-color);
}

.action-btn i {
    font-size: 1rem;
}

/* Sort Dropdown */
.sort-dropdown {
    position: relative;
}

.sort-toggle {
    position: relative;
    padding-right: 2rem;
}

.sort-toggle .dropdown-arrow {
    position: absolute;
    right: 0.75rem;
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.sort-dropdown-menu.show + .sort-toggle .dropdown-arrow,
.sort-dropdown:has(.sort-dropdown-menu.show) .dropdown-arrow {
    transform: rotate(180deg);
}

.sort-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 240px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.sort-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sort-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.sort-option i {
    font-size: 0.75rem;
    color: var(--success-color);
    opacity: 0;
    transition: opacity 0.2s;
}

.sort-option:hover {
    background: var(--bg-white);
}

.sort-option.active {
    background: rgba(16, 191, 124, 0.1);
    color: var(--success-color);
}

.sort-option.active i {
    opacity: 1;
}

.view-toggle-group {
    display: flex;
    gap: 0.375rem;
    background: var(--bg-white);
    padding: 0.25rem;
    border-radius: 8px;
}

.toggle-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--text-faded);
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-btn:hover {
    color: var(--text-color);
    background: var(--bg-white);
}

.toggle-btn.active {
    background: var(--success-color);
    color: var(--text-color);
}

/* Modern Products Grid */
.lc-products-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.product-card-wrapper {
    min-width: 0;
    overflow: hidden;
}

.lc-products-grid-modern.list-view {
    grid-template-columns: 1fr;
}

.lc-products-grid-modern.list-view .lc-product-card-new {
    display: flex;
    flex-direction: row;
}

.lc-products-grid-modern.list-view .product-image-container {
    width: 200px;
    padding-top: 0;
    height: auto;
    min-height: 180px;
    flex-shrink: 0;
}

.lc-products-grid-modern.list-view .product-image {
    position: relative;
    }

.lc-products-grid-modern.list-view .product-card-body {
    flex: 1;
    padding: 1.25rem;
}

.lc-products-grid-modern.list-view .product-actions-inline {
    align-self: flex-end;
}

/* New Product Card Design */
.lc-product-card-new {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 100%;
}

.lc-product-card-new:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 191, 124, 0.35);
    box-shadow: 0 12px 32px rgba(16, 191, 124, 0.12);
}

/* Product Image */
.product-image-container {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 125%;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lc-product-card-new:hover .product-image {
    transform: scale(1.06);
}

.discount-badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--success-color) 0%, #0d9f67 100%);
    color: white;
    padding: 5px 10px;
    border-radius: 7px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 4px 12px rgba(16, 191, 124, 0.35);
    z-index: 2;
}

/* Card Body */
.product-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex: 1;
}

.product-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    min-height: 2.35em;
    transition: color 0.2s;
}

.product-title:hover {
    color: var(--success-color);
}

/* Price Section */
.product-price-section {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-main {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--success-color);
}

.price-original {
    font-size: 0.8125rem;
    color: var(--text-subtle);
    text-decoration: line-through;
}

/* Seller Badge Mini */
.seller-badge-mini {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.625rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.75rem;
}

.seller-badge-mini:hover {
    background: var(--bg-white);
    border-color: rgba(16, 191, 124, 0.25);
    }
    
.seller-badge-mini img {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    object-fit: cover;
}

.seller-badge-mini span {
    color: var(--text-color);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

/* Product Actions Inline */
.product-actions-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.quantity-inline {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 4px;
    flex: 1;
}

.quantity-inline button {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: none;
    background: var(--bg-white);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.quantity-inline button:hover {
    background: rgba(16, 191, 124, 0.15);
    color: var(--success-color);
}

.quantity-inline input {
    flex: 1;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    background: transparent;
    border: none;
    outline: none;
    width: 36px;
}

.btn-add-cart {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, var(--success-color) 0%, #0d9f67 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(16, 191, 124, 0.25);
    font-size: 1rem;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(16, 191, 124, 0.35);
}

/* No Products Found */
.no-products-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.no-products-icon i {
    font-size: 4rem;
    color: var(--text-subtle);
    margin-bottom: 1rem;
}

.no-products-found h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.no-products-found p {
    color: var(--text-faded);
    margin-bottom: 1.5rem;
}

/* Spinner Animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fi-spin {
    animation: spin 1s linear infinite;
}

/* Pagination */
.lc-pagination-system {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.lc-pagination-system .pagination {
    display: flex;
    gap: 0.5rem;
}

.lc-pagination-system .pagination .page-link {
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: 0.2s;
}

.lc-pagination-system .pagination .page-link:hover,
.lc-pagination-system .pagination .page-item.active .page-link {
    background: var(--bs-blue);
    border-color: var(--bs-blue);
    color: #fff;
}

/* ===========================================
   21. CART MODAL
   =========================================== */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
        width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-modal {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px rgba(16, 191, 124, 0.15);
}

.cart-modal-overlay.active .cart-modal {
    transform: scale(1) translateY(0);
}

.modal-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--success-color) 0%, #0d9f67 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.modal-success-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.9375rem;
    color: var(--text-faded);
    text-align: center;
    margin-bottom: 2rem;
}

.modal-product-info {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.modal-product-info img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
  }
  
.product-details {
    flex: 1;
    min-width: 0;
  }
  
.product-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }

.product-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quantity-badge, .price-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(16, 191, 124, 0.1);
    border: 1px solid rgba(16, 191, 124, 0.2);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--text-color-muted);
}

.quantity-badge i, .price-badge i {
    color: var(--success-color);
    font-size: 0.875rem;
}

.quantity-badge strong, .price-badge strong {
    color: var(--success-color);
    font-weight: 700;
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.btn-modal-secondary, .btn-modal-primary {
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-modal-secondary {
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text-color);
}

.btn-modal-secondary:hover {
    background: var(--bg-white);
    border-color: var(--text-subtle);
}

.btn-modal-primary {
    background: linear-gradient(135deg, var(--success-color) 0%, #0d9f67 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(16, 191, 124, 0.3);
}

.btn-modal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(16, 191, 124, 0.4);
}

.quick-checkout-toggle {
    margin-bottom: 1rem;
}

.btn-quick-checkout {
    width: 100%;
    height: 50px;
    padding: 0 1.25rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: #ffd700;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    transition: all 0.3s;
}

.btn-quick-checkout:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.btn-quick-checkout .toggle-icon {
    margin-left: auto;
    font-size: 1.125rem;
    transition: transform 0.3s;
}

.btn-quick-checkout.active .toggle-icon {
    transform: rotate(180deg);
}

.quick-checkout-area {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.quick-checkout-area.active {
    max-height: 600px;
}

.payment-options {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.payment-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    padding: 1.25rem 1rem;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method:hover {
    background: var(--bg-white);
    border-color: rgba(16, 191, 124, 0.3);
}

.payment-method.selected {
    background: rgba(16, 191, 124, 0.1);
    border-color: var(--success-color);
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon.balance {
    background: linear-gradient(135deg, var(--success-color) 0%, #0d9f67 100%);
}

.method-icon.card {
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    }

.method-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.method-info {
    flex: 1;
}

.method-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.method-info small {
    font-size: 0.75rem;
    color: var(--text-faded);
    display: block;
}

.payment-method .check-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1rem;
    color: var(--text-subtle);
    opacity: 0;
    transition: all 0.3s;
}

.payment-method {
    position: relative;
}

.payment-method.selected .check-icon {
    color: var(--success-color);
    opacity: 1;
}

.btn-complete-purchase {
    width: 100%;
    height: 50px;
    padding: 0 1rem;
    background: linear-gradient(135deg, var(--success-color) 0%, #0d9f67 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-complete-purchase:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-complete-purchase:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 191, 124, 0.4);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-white);
    color: var(--text-faded);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close-btn:hover {
    background: var(--bg-white);
    color: var(--text-color);
}

/* Cart Modal View States */
.cart-modal-view {
    width: 100%;
}

/* Login Required Section */
.login-required-section {
    text-align: center;
    padding: 1.5rem 0;
}

.login-required-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.login-required-icon i {
    font-size: 2rem;
    color: #ffc107;
}

.login-required-section h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.login-required-section p {
    color: var(--text-color-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.login-actions {
    display: flex;
    gap: 0.75rem;
}

.login-actions a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-login-primary {
    background: var(--bs-blue);
    color: #fff;
}

.btn-login-primary:hover {
    background: var(--bs-blue-hover, #0056b3);
    color: #fff;
    transform: translateY(-2px);
}

.btn-login-secondary {
    background: var(--bg-secondary);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-login-secondary:hover {
    background: var(--bg-tertiary);
    color: var(--text-color);
}

/* Single Method Layout */
.payment-methods.single-method {
    grid-template-columns: 1fr;
}

.payment-methods.single-method .payment-method {
    max-width: 100%;
    flex-direction: row;
    text-align: left;
}

/* User Balance Info */
.user-balance-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-color-muted);
}

.user-balance-info strong {
    color: var(--bs-green);
}

/* Payment Title Subtitle */
.payment-subtitle {
    color: var(--text-color-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Processing View */
.processing-animation {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Countdown Circle */
.countdown-circle {
    position: relative;
    width: 100px;
    height: 100px;
}

.countdown-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.countdown-bg {
    fill: none;
    stroke: var(--bg-secondary);
    stroke-width: 6;
}

.countdown-progress {
    fill: none;
    stroke: var(--bs-blue);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.05s linear;
}

.countdown-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-blue);
    transition: transform 0.2s ease;
}

.countdown-number.pulse {
    transform: translate(-50%, -50%) scale(1.2);
}

/* Legacy spinner (fallback) */
.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--bg-secondary);
    border-top-color: var(--bs-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Order Summary Box */
.order-summary-box {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1.5rem;
    text-align: left;
}

.order-summary-box h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-items {
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border-color);
}

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

.summary-item img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.summary-item.topup-item .topup-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--bs-green), #1a9f5c);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-item.topup-item .topup-icon i {
    font-size: 1.25rem;
    color: #fff;
}

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

.summary-item-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.summary-item-qty {
    font-size: 0.75rem;
    color: var(--text-color-muted);
}

.summary-item-price {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

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

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-color-muted);
}

.summary-row.commission {
    color: #ffc107;
}

.summary-row.total {
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px dashed var(--border-color);
    font-size: 1rem;
    color: var(--text-color);
}

.summary-row.total strong {
    color: var(--bs-green);
}

/* Cancel Redirect Button */
.btn-cancel-redirect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-subtle);
    font-size: 0.8125rem;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-cancel-redirect:hover {
    color: var(--danger-color);
}

.btn-cancel-redirect i {
    font-size: 1rem;
}

/* Warning Icon */
.modal-warning-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-warning-icon i {
    font-size: 2.5rem;
    color: #ffc107;
}

/* Balance Comparison */
.balance-comparison {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.balance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.balance-item:not(:last-child) {
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.75rem;
}

.balance-item .label {
    color: var(--text-color-muted);
    font-size: 0.9rem;
}

.balance-item .value {
    font-weight: 600;
    font-size: 1rem;
}

.balance-item.current .value {
    color: var(--text-color);
}

.balance-item.needed .value {
    color: var(--bs-blue);
}

.balance-item.difference .value {
    color: #dc3545;
}

/* Quick Top-Up Section */
.quick-topup-section {
    background: linear-gradient(135deg, var(--bs-blue-overlay), var(--bs-blue-overlay-15));
    border: 1px solid var(--bs-blue-overlay-30);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.topup-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.topup-title i {
    color: var(--bs-blue);
}

.topup-subtitle {
    font-size: 0.85rem;
    color: var(--text-color-muted);
    margin-bottom: 1rem;
}

.topup-calculation {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-color-muted);
}

.calc-row.commission {
    color: #ffc107;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.6rem;
    margin-bottom: 0.4rem;
}

.calc-row.total {
    color: var(--text-color);
    font-size: 0.95rem;
}

.calc-row.total strong {
    color: var(--bs-green);
}

/* Insufficient Actions */
.insufficient-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-add-balance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 50px;
    padding: 0 1rem;
    background: var(--bs-green);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-add-balance:hover {
    background: #1a9f5c;
    color: #fff;
    transform: translateY(-2px);
}

.btn-back-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 50px;
    padding: 0 0.875rem;
    background: var(--bg-secondary);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-back-options:hover {
    background: var(--bg-tertiary);
}

/* Cart Modal Responsive */
/* ===========================================
   22. PRODUCTS PAGE RESPONSIVE
   =========================================== */

/* Sidebar Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Sidebar Close Button */
.sidebar-close-btn {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.sidebar-close-btn:hover {
    background: var(--danger-color);
    border-color: var(--danger-color);
    color: #fff;
}


/* ===========================================
   23. PAGE: PRODUCT DETAIL
   =========================================== */
.lc-product-detail-page {
    padding: 30px 0 60px;
}

/* Breadcrumb Navigation */
.lc-breadcrumb-nav .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.lc-breadcrumb-nav .breadcrumb-item a {
    color: var(--text-color-muted);
    text-decoration: none;
    transition: 0.2s;
}

.lc-breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--bs-blue);
}

.lc-breadcrumb-nav .breadcrumb-item.active {
    color: var(--text-color);
}

.lc-breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--text-faded);
    padding: 0 10px;
}

/* Product Header */
.product-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.product-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(255, 222, 0, 0.15) 0%, rgba(255, 222, 0, 0.05) 100%);
    border: 1px solid rgba(255, 222, 0, 0.3);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    margin-left: 12px;
}

.product-rating-badge i {
    color: #ffde00;
    font-size: 14px;
}

.product-rating-badge .rating-number {
    color: #ffde00;
}

.product-rating-badge .rating-count {
    color: var(--text-faded);
    margin-left: 2px;
}

.category-link-compact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-color-muted);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-link-compact:hover {
    background: var(--bg-white-2);
    border-color: var(--bs-blue);
    color: var(--text-color);
}

.category-image-compact {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
}

/* Product Price Card */
.product-price-card {
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bs-blue-overlay) 0%, var(--bs-blue-overlay-05) 100%);
    border: 1px solid var(--bs-blue-overlay-20);
    position: relative;
    overflow: hidden;
}

.product-price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--bs-blue-overlay) 0%, transparent 70%);
    animation: pricePulse 3s ease-in-out infinite;
}

@keyframes pricePulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.product-price-compact {
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.price-current-compact {
    font-size: 42px;
    font-weight: 700;
    color: var(--bs-blue);
    line-height: 1;
    text-shadow: 0 2px 10px var(--bs-blue-overlay-20);
}

.price-current-compact .currency-compact {
    font-size: 20px;
    font-weight: 500;
    margin-left: 4px;
}

.price-old-compact {
    font-size: 18px;
    color: var(--text-faded);
    text-decoration: line-through;
}

.price-save-compact {
    font-size: 14px;
    color: var(--success-color);
    font-weight: 600;
    margin-top: 6px;
    display: flex;
    align-items: center;
}

/* Stock Status Badge */
.stock-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.stock-status-badge.in-stock {
    background: rgba(16, 191, 124, 0.15);
    color: var(--success-color);
    border: 1px solid rgba(16, 191, 124, 0.3);
}

.stock-status-badge.out-of-stock {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.stock-status-badge i {
    font-size: 18px;
}

/* Form Label Compact */
.form-label-compact {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.form-label-compact i {
    color: var(--bs-blue);
}

/* Product Purchase Section */
.product-purchase-section {
    border-radius: 12px;
    background: var(--bg-white);
    border: 2px solid var(--bs-blue);
}

/* Product Image Card */
.lc-product-image-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: fit-content;
}

.lc-product-image-card .lc-card-body {
    padding: 15px !important;
}

.product-image-main {
    position: relative;
    background: var(--bg-white-2);
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    padding: 15px;
    max-width: 100%;
}

.product-image-main img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}

.product-discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--success-color) 0%, #0d9d68 100%);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    z-index: 10;
    box-shadow: 0 3px 8px rgba(16, 191, 124, 0.3);
}

.product-discount-badge .badge-text {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-stock-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(16, 191, 124, 0.15);
    backdrop-filter: blur(10px);
    color: var(--success-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    z-index: 10;
    border: 1px solid rgba(16, 191, 124, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-stock-badge.out-of-stock {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.3);
}

/* Product Info */
.lc-product-info {
    padding: 20px 0;
}

.lc-product-info .product-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    min-height: auto;
    -webkit-line-clamp: unset;
}

/* Product Extras Form */
.product-extras-form {
    border-radius: 12px;
}

.product-extras-form .lc-card-body {
    padding: 20px;
}

.btn-add-to-cart,
.btn-quick-buy {
    height: 50px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--bs-blue-overlay-30);
}

.btn-quick-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 191, 124, 0.3);
}

/* Seller Info */
.product-seller-info {
    border-radius: 12px;
}

.product-seller-info.sticky-top {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.seller-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
    margin: 0 auto;
    display: block;
}

.seller-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    text-align: center;
}

.seller-stats {
    font-size: 14px;
    color: var(--text-color-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.seller-stats i {
    color: var(--bs-blue);
    margin-right: 4px;
}

/* Section Headers */
.section-header {
    border-bottom: 2px solid var(--border);
    padding-bottom: 15px;
}

.section-header h4 {
    color: var(--text-color);
    font-weight: 600;
    font-size: 22px;
}

.section-header .section-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-blue-overlay-15);
    border-radius: 12px;
    color: var(--bs-blue);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.lc-product-details-section,
.lc-reviews-section {
    border-radius: 12px;
    scroll-margin-top: 100px;
}

/* Product Details Content */
.product-details-content {
    color: var(--text-color);
}

.product-details-content h5 {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.product-details-content h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-blue), transparent);
    border-radius: 2px;
}

.product-description {
    line-height: 1.8;
    font-size: 15px;
    color: var(--text-color);
}

.product-description p {
    margin-bottom: 1rem;
}

.product-description p:last-child {
    margin-bottom: 0;
}

/* Category Info Box */
.category-info-box {
    border-radius: 12px;
    position: sticky;
    top: 20px;
}

.category-info-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--bg-white-2);
    padding: 8px;
    border: 1px solid var(--border);
}

.category-description {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 14px;
}

.category-description p {
    margin-bottom: 0.75rem;
}

.category-description p:last-child {
    margin-bottom: 0;
}

/* Reviews Section */
.reviews-summary {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
}

.average-rating {
    text-align: center;
    position: relative;
}

.rating-score {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffde00 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
}

.rating-stars i {
    font-size: 24px;
    color: #ffde00;
}

.rating-count {
    color: var(--text-color-muted);
    font-size: 14px;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.rating-item:hover {
    transform: translateX(4px);
}

.rating-label {
    min-width: 70px;
    font-size: 14px;
    color: var(--text-color-muted);
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: var(--bg-white-2);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffde00, #ffa500);
    border-radius: 4px;
    transition: width 0.8s ease-out;
    box-shadow: 0 0 8px rgba(255, 222, 0, 0.3);
}

.reviews-list {
    margin-top: 30px;
}

.review-item {
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.review-item:hover {
    transform: translateY(-2px);
    border-color: var(--bs-blue);
    box-shadow: 0 8px 20px var(--bs-blue-overlay-15);
}

.review-item.top-rated {
    border: 1px solid rgba(255, 222, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 222, 0, 0.05) 0%, rgba(255, 222, 0, 0.02) 100%);
}

.review-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--bg-white-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-faded);
    border: 1px solid var(--border);
}

.review-author {
    color: var(--text-color);
    font-size: 16px;
}

.review-date {
    font-size: 13px;
}

.review-text {
    color: var(--text-color-muted);
    line-height: 1.7;
    margin-top: 8px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    font-size: 16px;
    color: #ffde00;
}

/* Quantity Controls */
.lc-quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-white-2);
    height: 48px;
}

.lc-quantity-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    width: 48px;
    min-width: 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 300;
}

.lc-quantity-btn:hover {
    background: var(--bs-blue);
    color: #fff;
}

.lc-quantity-btn:active {
    transform: scale(0.95);
}

.lc-quantity input,
.lc-quantity input.form-control {
    width: 60px !important;
    min-width: 60px !important;
    max-width: 60px !important;
    height: 100% !important;
    min-height: auto !important;
    text-align: center;
    border: none !important;
    border-left: 1px solid var(--border) !important;
    border-right: 1px solid var(--border) !important;
    background: var(--bg-white) !important;
    color: var(--text-color) !important;
    font-weight: 600;
    font-size: 16px;
    padding: 0 !important;
    margin: 0;
    border-radius: 0 !important;
    -moz-appearance: textfield;
}

.lc-quantity input::-webkit-outer-spin-button,
.lc-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.lc-quantity input:focus,
.lc-quantity input.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* ===========================================
   24. RELATED PRODUCTS SECTION
   =========================================== */
.lc-related-products-section {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 0;
    margin-bottom: 40px;
}

.related-products-container {
    max-width: 100%;
}

/* Related Products - Discount Badge */
.lc-product-item .img {
    position: relative;
}

.price-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--success-color) 0%, #0d9d68 100%);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.lc-section-head .subtitle {
    font-size: 13px;
    color: var(--text-faded);
    margin-left: 12px;
    font-weight: 400;
}

.empty-related-products {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white-2);
    border-radius: 50%;
    border: 2px dashed var(--border);
}

.empty-icon i {
    font-size: 36px;
    color: var(--text-subtle);
}

.empty-title {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.empty-text {
    color: var(--text-faded);
    font-size: 14px;
    margin-bottom: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================================
   25. PRODUCT PAGE RESPONSIVE
   =========================================== */

/* ===========================================
   26. AUTH PAGE (Login & Register)
   =========================================== */
.lc-auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 3rem 0 !important;
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.auth-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.auth-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: authFloat 20s ease-in-out infinite;
}

.auth-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.auth-shape.shape-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    top: 50%;
    right: -100px;
    animation-delay: -5s;
}

.auth-shape.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    bottom: -50px;
    left: 10%;
    animation-delay: -10s;
}

.auth-shape.shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--bs-blue) 0%, #c35e0b 100%);
    top: 20%;
    left: 50%;
    animation-delay: -15s;
}

.auth-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--bs-blue-overlay-03) 1px, transparent 1px),
        linear-gradient(90deg, var(--bs-blue-overlay-03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

@keyframes authFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.1); }
    50% { transform: translate(-15px, 15px) scale(0.9); }
    75% { transform: translate(15px, 10px) scale(1.05); }
}

.lc-auth-wrapper {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lc-auth-card {
    background: var(--bg-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--bg-white) inset;
    transition: all 0.3s ease;
}

.lc-auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px var(--bs-blue-overlay-30);
}

.auth-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    font-size: 1rem;
    color: var(--text-faded);
    margin: 0;
}

/* Auth Form Styling */
.lc-auth-form {
    margin-bottom: 2rem;
}

.lc-form-group {
    margin-bottom: 1.5rem;
}

.lc-form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color-muted);
    margin-bottom: 0.5rem;
}

.lc-form-label i {
    font-size: 1rem;
    color: var(--bs-blue);
}

.lc-form-input {
    width: 100%;
    padding: 0.875rem 1.125rem;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.lc-form-input::placeholder {
    color: var(--input-placeholder);
}

.lc-form-input:focus {
    background: var(--input-bg);
    border-color: var(--bs-blue);
    outline: none;
    box-shadow: 0 0 0 3px var(--bs-blue-overlay-15);
}

.lc-form-footer {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.lc-form-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--bs-blue);
    text-decoration: none;
    transition: all 0.3s;
}

.lc-form-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.lc-form-link i {
    font-size: 0.875rem;
}

/* Auth Checkbox */
.lc-form-checkbox {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bs-blue-overlay-05);
    border: 1px solid var(--bs-blue-overlay-15);
    border-radius: 10px;
}

.lc-form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.lc-form-checkbox label {
    font-size: 0.875rem;
    color: var(--text-color-muted);
    line-height: 1.5;
    margin: 0;
}

.lc-form-checkbox .contract-link {
    color: var(--bs-blue);
    text-decoration: none;
    font-weight: 600;
}

.lc-form-checkbox .contract-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Auth Buttons */
/* Auth Divider */
.lc-auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-subtle);
    font-size: 0.875rem;
}

.lc-auth-divider::before,
.lc-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--bg-white);
}

/* Auth Modal */
.lc-modal-content {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.lc-modal-header {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
}

.lc-modal-header .modal-title {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.lc-modal-header .modal-title i {
    color: var(--bs-blue);
    font-size: 1.5rem;
}

.lc-modal-close {
    background: var(--bg-white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.lc-modal-close i {
    font-size: 20px;
    color: var(--text-color-muted);
}

.lc-modal-close:hover {
    background: var(--bg-white);
}

.lc-modal-close:hover i {
    color: var(--text-color);
}

.lc-modal-body {
    padding: 1.5rem;
    color: var(--text-color-muted);
    max-height: 60vh;
    overflow-y: auto;
}

/* Auth Page Responsive - moved to end */

/* ===========================================
   27. SWEETALERT2 TOAST CUSTOMIZATION
   =========================================== */
.swal2-container.swal2-bottom-end {
    bottom: 24px !important;
    right: 24px !important;
}

.lc-toast-popup {
    background: #ffffff !important;
    border: none !important;
    border-left: 4px solid var(--bs-blue) !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    padding: 16px 48px 16px 16px !important;
    min-width: 320px !important;
    max-width: 400px !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
}

.lc-toast-popup .swal2-icon-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.lc-toast-popup .swal2-icon {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    margin: 0 !important;
    border: none !important;
    flex-shrink: 0 !important;
    background: var(--bs-blue) !important;
    border-radius: 50% !important;
    order: -1 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

.lc-toast-popup .swal2-icon .swal2-icon-content {
    font-size: 20px !important;
    color: var(--text-color) !important;
}

/* Success icon */
.lc-toast-popup .swal2-icon.swal2-success {
    background: #22c55e !important;
    overflow: hidden !important;
}

.lc-toast-popup .swal2-icon.swal2-success .swal2-success-ring,
.lc-toast-popup .swal2-icon.swal2-success .swal2-success-fix,
.lc-toast-popup .swal2-icon.swal2-success .swal2-success-circular-line-left,
.lc-toast-popup .swal2-icon.swal2-success .swal2-success-circular-line-right {
    display: none !important;
}

.lc-toast-popup .swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: var(--text-color) !important;
    position: absolute !important;
    height: 3px !important;
    border-radius: 2px !important;
}

.lc-toast-popup .swal2-icon.swal2-success .swal2-success-line-tip {
    width: 8px !important;
    top: 21px !important;
    left: 9px !important;
    transform: rotate(45deg) !important;
}

.lc-toast-popup .swal2-icon.swal2-success .swal2-success-line-long {
    width: 16px !important;
    top: 18px !important;
    left: 14px !important;
    transform: rotate(-45deg) !important;
}

/* Error icon */
.lc-toast-popup .swal2-icon.swal2-error {
    background: #ef4444 !important;
}

.lc-toast-popup .swal2-icon.swal2-error .swal2-x-mark {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.lc-toast-popup .swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
    background-color: var(--text-color) !important;
    width: 18px !important;
    height: 3px !important;
    top: 50% !important;
    left: 50% !important;
    position: absolute !important;
}

.lc-toast-popup .swal2-icon.swal2-error .swal2-x-mark-line-left {
    transform: translate(-50%, -50%) rotate(45deg) !important;
}

.lc-toast-popup .swal2-icon.swal2-error .swal2-x-mark-line-right {
    transform: translate(-50%, -50%) rotate(-45deg) !important;
}

/* Warning icon */
.lc-toast-popup .swal2-icon.swal2-warning {
    background: #f59e0b !important;
    color: var(--text-color) !important;
}

.lc-toast-popup .swal2-icon.swal2-warning .swal2-icon-content {
    color: var(--text-color) !important;
}

/* Info icon */
.lc-toast-popup .swal2-icon.swal2-info {
    background: var(--bs-blue) !important;
    color: #fff !important;
}

.lc-toast-popup .swal2-icon.swal2-info .swal2-icon-content {
    color: #fff !important;
}

/* Content container */
.lc-toast-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    flex: 1 !important;
    overflow: visible !important;
}

/* Title (Başarılı!, Hata!, etc.) */
.lc-toast-title {
    color: #1f2937 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
}

/* Description text */
.lc-toast-text {
    color: #6b7280 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
}

/* Close button */
.lc-toast-popup .swal2-close {
    position: absolute !important;
    top: 16px !important;
    right: 14px !important;
    width: 24px !important;
    height: 24px !important;
    color: #9ca3af !important;
    font-size: 26px !important;
    font-weight: 300 !important;
    transition: all 0.2s !important;
    background: transparent !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.lc-toast-popup .swal2-close:hover {
    color: #6b7280 !important;
}

.lc-toast-popup .swal2-close:focus {
    box-shadow: none !important;
}

/* Progress bar container */
.lc-toast-popup .swal2-timer-progress-bar-container {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: #e5e7eb !important;
    border-radius: 0 0 12px 0 !important;
    overflow: hidden !important;
}

/* Progress bar */
.lc-toast-progress,
.lc-toast-popup .swal2-timer-progress-bar {
    background: var(--bs-blue) !important;
    height: 4px !important;
}

/* Success styles */
.lc-toast-popup:has(.swal2-icon-success) {
    border-left-color: #22c55e !important;
}

.lc-toast-popup:has(.swal2-icon-success) .swal2-timer-progress-bar {
    background: #22c55e !important;
}

/* Error styles */
.lc-toast-popup:has(.swal2-icon-error) {
    border-left-color: #ef4444 !important;
}

.lc-toast-popup:has(.swal2-icon-error) .swal2-timer-progress-bar {
    background: #ef4444 !important;
}

/* Warning styles */
.lc-toast-popup:has(.swal2-icon-warning) {
    border-left-color: #f59e0b !important;
}

.lc-toast-popup:has(.swal2-icon-warning) .swal2-timer-progress-bar {
    background: #f59e0b !important;
}

/* Info styles */
.lc-toast-popup:has(.swal2-icon-info) {
    border-left-color: var(--bs-blue) !important;
}

/* Toast animation */
.lc-toast-popup.swal2-show {
    animation: toastSlideIn 0.4s cubic-bezier(0.21, 1.02, 0.73, 1) !important;
}

.lc-toast-popup.swal2-hide {
    animation: toastSlideOut 0.3s ease-in !important;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(calc(100% + 30px));
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(calc(100% + 30px));
        opacity: 0;
    }
}

/* Mobile responsive */

/* ===========================================
   28. CART PAGE
   =========================================== */
/* Page Section */
.lc-section-page {
    padding: 2rem 0;
}

/* Page Header */
.lc-section-page-head {
    text-align: center;
    margin-bottom: 2rem;
}

.lc-section-page-head .title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.lc-section-page-head .subtitle {
    font-size: 1rem;
    color: var(--text-faded);
}

/* Cart Page Progress */
.lc-cart-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 700px;
    margin: 2rem auto 3rem;
    padding: 2rem 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    flex: 1;
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-subtle);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px var(--bs-blue-overlay-35);
    transform: scale(1.1);
}

.progress-step span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-subtle);
    transition: all 0.3s;
}

.progress-step.active span {
    color: var(--bs-blue);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--bg-white);
    margin-top: -28px;
    transition: all 0.3s;
}

.progress-line.active {
    background: linear-gradient(90deg, var(--bs-blue) 0%, var(--bs-blue-overlay-30) 100%);
}

/* Empty Cart */
.lc-empty-cart {
    margin-top: 3rem;
}

.lc-empty-cart .lc-card {
    margin-bottom: 3rem;
}

.empty-cart-content {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--bs-blue-overlay) 0%, var(--bs-blue-overlay-05) 100%);
    border: 1px solid var(--bs-blue-overlay-20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-icon i {
    font-size: 4rem;
    color: var(--bs-blue);
}

.empty-cart-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.empty-cart-content p {
    font-size: 1rem;
    color: var(--text-color-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.empty-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lc-empty-cart .lc-section-head {
    margin-bottom: 2rem;
}

/* Cart Layout */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
    align-items: start;
}

/* Guest Registration Card */
.guest-info-card {
    margin-bottom: 2rem;
    padding: 2rem !important;
}

.guest-info-card .lc-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 0 0 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.guest-info-card .header-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--bs-blue-overlay-15) 0%, var(--bs-blue-overlay) 100%);
    border: 1px solid var(--bs-blue-overlay-20);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guest-info-card .header-icon i {
    font-size: 1.875rem;
    color: var(--bs-blue);
}

.guest-info-card .header-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.375rem;
}

.guest-info-card .header-content p {
    font-size: 0.9375rem;
    color: var(--text-faded);
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--bs-blue);
}

.form-group .form-control {
    padding: 0.875rem 1.125rem;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.form-group .form-control:focus {
    background: var(--input-bg);
    border-color: var(--bs-blue);
    outline: none;
    box-shadow: 0 0 0 3px var(--bs-blue-overlay);
}

.form-group .form-control::placeholder {
    color: var(--input-placeholder);
}

.guest-note {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bs-blue-overlay-08);
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--text-color-muted);
}

.guest-note i {
    color: var(--bs-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Cart Items */
.lc-cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.lc-cart-item-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 120px 1fr auto auto auto;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.lc-cart-item-card:hover {
    border-color: var(--bs-blue-overlay-25);
    box-shadow: 0 8px 24px var(--bs-blue-overlay-12);
    transform: translateY(-2px);
}

.item-image {
    position: relative;
}

.item-image img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
}

.item-image .discount-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #10bf7c 0%, #0d9f67 100%);
    color: var(--text-color);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.item-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s;
}

.item-name:hover {
    color: #10bf7c;
}

.item-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(16, 191, 124, 0.1);
    border: 1px solid rgba(16, 191, 124, 0.2);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--text-color-muted);
}

.meta-badge i {
    color: #10bf7c;
}

.item-price-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.price-main {
    font-size: 1.25rem;
    font-weight: 700;
    color: #10bf7c;
}

.price-old {
    font-size: 0.9375rem;
    color: var(--text-subtle);
    text-decoration: line-through;
}

.savings-badge {
    padding: 0.25rem 0.625rem;
    background: rgba(16, 191, 124, 0.15);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #10bf7c;
}

.item-quantity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.item-quantity label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-faded);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.375rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: var(--bg-white);
    color: var(--text-faded);
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.quantity-control input {
    width: 48px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9375rem;
}

.item-total {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    min-width: 120px;
}

.item-total label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-faded);
}

.total-price {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-color);
}

.total-old {
    font-size: 0.875rem;
    color: var(--text-subtle);
    text-decoration: line-through;
}

.item-remove {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.125rem;
}

.item-remove:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    transform: scale(1.05);
}

/* Trust Badges */
.trust-badges-card {
    margin-bottom: 0;
    padding: 2rem !important;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.875rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 12px;
    transition: all 0.3s;
}

.trust-badge-item:hover {
    background: var(--bg-white);
    transform: translateY(-2px);
}

.trust-badge-item .badge-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bs-blue-overlay-15) 0%, var(--bs-blue-overlay) 100%);
    border: 1px solid var(--bs-blue-overlay-20);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-item .badge-icon i {
    font-size: 1.5rem;
    color: var(--bs-blue);
}

.trust-badge-item .badge-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.trust-badge-item .badge-text small {
    font-size: 0.75rem;
    color: var(--text-faded);
}

/* Cart Sidebar */
.cart-sidebar {
    position: relative;
}

.cart-summary-sticky {
    position: sticky;
    top: 20px;
}

.cart-sidebar .lc-card {
    padding: 2rem !important;
}

.summary-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.25rem;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}

.summary-details .detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
    color: var(--text-color-muted);
}

.summary-details .detail-row span {
    font-weight: 400;
}

.summary-details .detail-row.discount {
    color: #10bf7c;
}

.summary-details .detail-row.discount span:last-child {
    color: #10bf7c;
}

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

.summary-details .detail-row.total strong {
    font-size: 1.375rem;
    color: var(--bs-blue);
    font-weight: 700;
}

/* Coupon Section */
.coupon-section {
    margin-bottom: 1.5rem;
}

.coupon-toggle-btn {
    width: 100%;
    height: 50px;
    padding: 0 1rem;
    background: var(--bg-white);
    border: 1px dashed var(--border);
    border-radius: 10px;
    color: var(--text-color-muted);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.coupon-toggle-btn:hover {
    background: var(--bg-white);
    border-color: var(--bs-blue-overlay-30);
    color: var(--bs-blue);
}

.coupon-toggle-btn i:first-child {
    font-size: 1.125rem;
}

.coupon-toggle-btn span {
    flex: 1;
    text-align: left;
}

.coupon-toggle-btn .toggle-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.coupon-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

.coupon-input-area {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.coupon-input-area.active {
    max-height: 300px;
    opacity: 1;
    margin-top: 1rem;
}

.coupon-input-wrapper {
    background: linear-gradient(135deg, var(--bs-blue-overlay-05) 0%, var(--bs-blue-overlay-02) 100%);
    border: 1px solid var(--bs-blue-overlay-15);
    border-radius: 12px;
    padding: 1.25rem;
}

.coupon-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.875rem;
}

.coupon-label i {
    color: var(--bs-blue);
    font-size: 1.125rem;
}

.coupon-input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.coupon-input-container {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.coupon-input-container .input-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-subtle);
    font-size: 1.125rem;
    pointer-events: none;
    transition: all 0.3s;
}

.coupon-input {
    width: 100%;
    padding: 0.875rem 1.125rem 0.875rem 2.75rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 0.9375rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.coupon-input:focus {
    background: var(--bg-white);
    border-color: var(--bs-blue);
    outline: none;
    box-shadow: 0 0 0 3px var(--bs-blue-overlay-15);
}

.coupon-input:focus + .input-icon {
    color: var(--bs-blue);
}

.coupon-input::placeholder {
    color: var(--text-subtle);
    text-transform: none;
    letter-spacing: normal;
}

.coupon-message {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    padding: 0.625rem;
    border-radius: 8px;
    display: none;
}

.coupon-message:not(:empty) {
    display: block;
}

.coupon-hint {
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-size: 0.8125rem;
    color: var(--text-faded);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coupon-hint i {
    color: var(--bs-blue-overlay-60);
    font-size: 0.875rem;
}

.coupon-remove-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
}

.coupon-remove-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-1px);
}

.coupon-remove-btn i {
    font-size: 1rem;
}

.coupon-apply-btn {
    height: 44px;
    padding: 0 1.25rem;
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px var(--bs-blue-overlay-20);
}

.coupon-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--bs-blue-overlay-35);
}

.coupon-apply-btn i {
    font-size: 1rem;
}

.coupon-error {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    color: #ef4444;
    font-size: 0.875rem;
    display: none;
}

.coupon-error:not(:empty) {
    display: block;
}

/* Payment Methods */
.payment-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.lc-payment-method {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lc-payment-method:hover:not(.disabled) {
    background: var(--bg-white);
    border-color: var(--bs-blue-overlay-25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--bs-blue-overlay);
}

.lc-payment-method.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lc-payment-method.balance .method-icon {
    background: linear-gradient(135deg, #10bf7c 0%, #0d9f67 100%);
    box-shadow: 0 4px 12px rgba(16, 191, 124, 0.3);
}

.lc-payment-method.balance .method-badge.success {
    background: rgba(16, 191, 124, 0.15);
    color: #10bf7c;
}

.lc-payment-method.card .method-icon {
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    box-shadow: 0 4px 12px var(--bs-blue-overlay-30);
}

.method-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.method-info {
    flex: 1;
}

.method-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.method-info small {
    font-size: 0.8125rem;
    color: var(--text-faded);
}

.method-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.method-badge.success {
    background: rgba(16, 191, 124, 0.15);
    color: #10bf7c;
}

.method-badge.danger {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.method-action-btn {
    width: 100%;
    height: 50px;
    padding: 0 1rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
}

.method-action-btn.primary {
    background: linear-gradient(135deg, #10bf7c 0%, #0d9f67 100%);
    color: var(--text-color);
    box-shadow: 0 4px 12px rgba(16, 191, 124, 0.3);
}

.method-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(16, 191, 124, 0.4);
}

.method-action-btn.secondary {
    background: var(--bs-blue-overlay-15);
    border: 1px solid var(--bs-blue-overlay-30);
    color: var(--bs-blue);
}

.method-action-btn.secondary:hover {
    background: var(--bs-blue-overlay-25);
    border-color: var(--bs-blue);
}

.security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.security-badges img {
    height: 32px;
    opacity: 0.6;
    filter: grayscale(1);
    transition: all 0.3s;
}

.security-badges img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Cart Responsive */
/* Cart responsive - moved to end */

/* ==========================================
    /* Hide cart progress on mobile */
    @media (max-width: 991px) {
    .lc-cart-progress {
        display: none;
    }
    
    .lc-section-page-head .title {
        font-size: 1.5rem;
    }
    
    .lc-section-page-head .subtitle {
        font-size: 0.9375rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    /* Cart layout - sidebar at bottom on mobile */
    .cart-layout {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .cart-layout > * {
        width: 100%;
        flex-shrink: 0;
    }
    
    .cart-main-content {
        order: 1;
    }
    
    .cart-sidebar {
        order: 2;
    }
    
    /* Guest info card spacing */
    .guest-info-card {
        margin-bottom: 1.25rem;
    }
    
    .lc-cart-items {
        margin-bottom: 0;
    }
    
    /* Cart item card mobile layout */
    .lc-cart-item-card {
        display: grid;
        grid-template-columns: 70px 1fr;
        grid-template-areas:
            "image info"
            "quantity total";
        gap: 0.75rem 1rem;
        padding: 1rem;
        position: relative;
    }
    
    .lc-cart-item-card .item-image {
        grid-area: image;
    }
    
    .lc-cart-item-card .item-image img {
        width: 70px;
        height: 70px;
        border-radius: 8px;
    }
    
    .lc-cart-item-card .item-info {
        grid-area: info;
        padding-right: 30px;
    }
    
    .lc-cart-item-card .item-name {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
        -webkit-line-clamp: 2;
    }
    
    .lc-cart-item-card .item-price-section {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.35rem;
    }
    
    .lc-cart-item-card .price-main {
        font-size: 1rem;
    }
    
    .lc-cart-item-card .price-old {
        font-size: 0.75rem;
    }
    
    .lc-cart-item-card .savings-badge {
        display: none;
    }
    
    .lc-cart-item-card .discount-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
    
    /* Cart item bottom row */
    .lc-cart-item-card .item-quantity {
        grid-area: quantity;
        padding-top: 0.75rem;
        border-top: 1px dashed var(--border-color);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .lc-cart-item-card .item-total {
        grid-area: total;
        padding-top: 0.75rem;
        border-top: 1px dashed var(--border-color);
        text-align: right;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    
    .lc-cart-item-card .item-quantity label,
    .lc-cart-item-card .item-total label {
        font-size: 0.7rem;
        margin-bottom: 0.35rem;
        color: var(--text-secondary);
    }
    
    .lc-cart-item-card .quantity-control {
        height: 36px;
        border-radius: 8px;
        background: var(--bg-white);
        border: 1px solid var(--border);
        padding: 0.25rem;
        gap: 0.25rem;
        display: inline-flex;
    }
    
    .lc-cart-item-card .qty-btn {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .lc-cart-item-card .quantity-control input {
        width: 36px;
        height: 28px;
        font-size: 0.85rem;
        background: transparent;
        padding: 0;
    }
    
    .lc-cart-item-card .total-price {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--primary);
    }
    
    .lc-cart-item-card .total-old {
        font-size: 0.75rem;
    }
    
    .lc-cart-item-card .item-remove {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    /* Cart sidebar mobile */
    .cart-sidebar {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .cart-sidebar .lc-card {
        padding: 1.25rem !important;
        border-radius: 16px;
        width: 100%;
    }
    
    .summary-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    /* Summary details mobile */
    .summary-details {
        gap: 0.65rem;
        margin-bottom: 1rem;
    }
    
    .summary-details .detail-row {
        font-size: 0.875rem;
    }
    
    .summary-details .detail-row.total {
        padding-top: 0.75rem;
        margin-top: 0.25rem;
    }
    
    .summary-details .detail-row.total strong {
        font-size: 1.2rem;
    }
    
    /* Coupon section mobile */
    .coupon-section {
        margin-bottom: 1rem;
    }
    
    .coupon-toggle-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .coupon-input-area {
        padding: 0.875rem;
    }
    
    .coupon-label {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .coupon-input-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .coupon-input {
        font-size: 0.85rem;
        padding: 0.75rem 0.75rem 0.75rem 2.25rem;
    }
    
    .coupon-apply-btn {
        width: 100%;
        padding: 0.65rem;
        font-size: 0.85rem;
    }
    
    /* Payment method section mobile */
    .payment-method-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .lc-payment-method {
        padding: 1rem;
        border-radius: 10px;
        margin-bottom: 0.75rem;
    }
    
    .lc-payment-method .method-header {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .lc-payment-method .method-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .lc-payment-method .method-icon i {
        font-size: 1.25rem;
    }
    
    .lc-payment-method .method-info strong {
        font-size: 0.9rem;
    }
    
    .lc-payment-method .method-info small {
        font-size: 0.75rem;
    }
    
    .lc-payment-method .method-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
    
    .lc-payment-method .method-action-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    /* Security badges mobile */
    .security-badges-inline {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .security-badges-inline img {
        height: 20px;
    }
    
    /* Guest form mobile */
    .guest-info-card {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .guest-info-card .lc-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .guest-info-card .header-icon {
        margin: 0 auto;
    }
    
    /* Cart sidebar mobile */
    .cart-sidebar .lc-card {
        padding: 1.25rem !important;
    }
    
    .cart-sidebar .summary-title {
        font-size: 1.1rem;
    }
    
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .empty-cart-content {
        padding: 2.5rem 1rem;
    }
    
    .empty-icon {
        width: 90px;
        height: 90px;
    }
    
    .empty-icon i {
        font-size: 2.5rem;
    }
    
    .empty-cart-content h2 {
        font-size: 1.375rem;
    }
    
    .empty-cart-content p {
        font-size: 0.9rem;
    }
    
    /* Coupon section mobile */
    .coupon-input-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .coupon-apply-btn {
        width: 100%;
    }
    
    .coupon-remove-btn {
        position: absolute;
        right: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .coupon-input-container {
        position: relative;
    }
}

/* ===========================================
   29. CATEGORIES PAGE
   =========================================== */
/* Search Wrapper */
.lc-categories-search-wrapper {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.lc-categories-search {
    position: relative;
}

.lc-categories-search .icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-subtle);
    font-size: 1.25rem;
    pointer-events: none;
    transition: color 0.3s;
    z-index: 1;
}

.lc-categories-search .form-control {
    padding: 1.125rem 10rem 1.125rem 3.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s;
}

.lc-categories-search .form-control:focus {
    background: var(--bg-white);
    border-color: var(--bs-blue);
    outline: none;
    box-shadow: 0 0 0 4px var(--bs-blue-overlay);
}

.lc-categories-search .form-control:focus + .icon {
    color: var(--bs-blue);
}

.lc-categories-search .form-control::placeholder {
    color: var(--text-subtle);
}

.search-badge {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    pointer-events: none;
}

.search-badge i {
    font-size: 1rem;
}

/* Categories Sections */
.lc-categories-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.lc-category-section {
    position: relative;
}

/* Section Header */
.category-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    gap: 1rem;
}

.section-header-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
}

.section-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-white);
    flex-shrink: 0;
    border: 2px solid var(--bs-blue-overlay-20);
}

.section-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-info {
    flex: 1;
}

.section-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.375rem;
}

.section-subtitle {
    font-size: 0.9375rem;
    color: var(--text-faded);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-section-header .btn {
    flex-shrink: 0;
}

/* Categories Grid */
.lc-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.lc-category-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lc-category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bs-blue-overlay-08) 0%, rgba(147, 51, 234, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.lc-category-card:hover {
    background: var(--bg-white);
    border-color: var(--bs-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--bs-blue-overlay-20);
}

.lc-category-card:hover::before {
    opacity: 1;
}

/* Category Card Header */
.category-card-header {
    position: relative;
    display: flex;
    justify-content: center;
}

.category-image-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-white);
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.lc-category-card:hover .category-image-wrapper {
    transform: scale(1.05);
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.lc-category-card:hover .category-image-wrapper img {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: pulse 2s infinite;
}

.category-badge.popular {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.category-badge i {
    font-size: 0.875rem;
    color: var(--text-color);
}

/* Category Info */
.category-info {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.lc-category-card:hover .category-name {
    color: var(--bs-blue);
}

.category-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-count {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--text-color-muted);
    transition: all 0.3s;
}

.product-count i {
    font-size: 0.875rem;
    color: var(--bs-blue);
}

.lc-category-card:hover .product-count {
    background: var(--bs-blue-overlay-15);
    color: var(--text-color);
}

/* Category Footer */
.category-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.view-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-faded);
    transition: color 0.3s;
}

.lc-category-card:hover .view-link {
    color: var(--bs-blue);
}

.category-arrow {
    width: 28px;
    height: 28px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.category-arrow i {
    font-size: 0.875rem;
    color: var(--text-subtle);
    transition: all 0.3s;
}

.lc-category-card:hover .category-arrow {
    background: var(--bs-blue);
    transform: translateX(4px);
}

.lc-category-card:hover .category-arrow i {
    color: var(--text-color);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* No Results */
.lc-no-results {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 2rem;
}

.no-results-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-results-icon i {
    font-size: 3rem;
    color: #ef4444;
}

.lc-no-results h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.lc-no-results p {
    font-size: 1rem;
    color: var(--text-faded);
    max-width: 400px;
    margin: 0 auto;
}

/* Categories Page - Responsive */

/* ===========================================
   30. CLIENT DASHBOARD
   =========================================== */
/* Page Header */
.lc-page-header {
    margin-bottom: 2rem;
}

.page-header-content {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.page-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.page-title i {
    font-size: 2rem;
    color: var(--bs-blue);
}

.page-subtitle {
    font-size: 1rem;
    color: var(--text-faded);
    margin: 0;
}

/* Review Reminder */
.lc-review-reminder {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.05) 100%);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    padding-right: 3.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lc-review-reminder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #ea580c, #f97316);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.reminder-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-white);
    border-radius: 8px;
    color: var(--text-faded);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

.reminder-close:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.reminder-close i {
    font-size: 1.25rem;
}

.reminder-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 24px rgba(249, 115, 22, 0.4);
    }
}

.reminder-icon i {
    font-size: 2rem;
    color: #fff;
}

.reminder-content {
    flex: 1;
    min-width: 0;
}

.reminder-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.reminder-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.reminder-badge {
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reminder-text {
    font-size: 0.9375rem;
    color: var(--text-color-muted);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.reminder-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.reminder-product-img-wrapper {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.reminder-product-img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: block;
}

.reminder-product-info {
    flex: 1;
    min-width: 0;
}

.reminder-product-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.375rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reminder-product-date {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-faded);
}

.reminder-product-date i {
    font-size: 0.875rem;
}

.reminder-actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex-shrink: 0;
    min-width: 160px;
}

.btn-reminder-primary,
.btn-reminder-secondary {
    height: 46px;
    padding: 0 1.25rem;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-reminder-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: var(--text-color);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-reminder-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-reminder-primary i {
    font-size: 1rem;
}

.btn-reminder-secondary {
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text-color-muted);
}

.btn-reminder-secondary:hover {
    background: var(--bg-white);
    color: var(--text-color);
}

/* Stats Grid */
.lc-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.lc-stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.lc-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--bs-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.lc-stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--bs-blue-overlay-30);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.lc-stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.stat-icon i {
    font-size: 1.75rem;
    color: var(--text-color);
}

.stat-icon-blue {
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
}

.stat-icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.stat-icon-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

.stat-icon-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-faded);
    margin-bottom: 0.375rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.stat-action {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bs-blue-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-blue);
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
}

.stat-action:hover {
    background: var(--bs-blue);
    color: #fff;
    transform: scale(1.1);
}

.stat-action i {
    font-size: 1.5rem;
}

/* Section Header */
.lc-section-header {
    margin-bottom: 1.5rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.section-title i {
    font-size: 1.5rem;
    color: var(--bs-blue);
}

/* Actions Grid */
.lc-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.lc-action-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.lc-action-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--bs-blue);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.lc-action-card:hover {
    transform: translateX(8px);
    border-color: var(--bs-blue-overlay-30);
    background: linear-gradient(135deg, var(--bs-blue-overlay-08) 0%, var(--bs-blue-overlay-03) 100%);
}

.lc-action-card:hover::before {
    transform: scaleY(1);
}

.action-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bs-blue-overlay-15) 0%, var(--bs-blue-overlay-08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-icon i {
    font-size: 1.5rem;
    color: var(--bs-blue);
}

.action-content {
    flex: 1;
}

.action-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.action-desc {
    font-size: 0.875rem;
    color: var(--text-faded);
    margin: 0;
}

.action-arrow {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-subtle);
    transition: all 0.3s;
    flex-shrink: 0;
}

.lc-action-card:hover .action-arrow {
    background: var(--bs-blue);
    color: #fff;
}

.action-arrow i {
    font-size: 1.375rem;
}

/* Dashboard Responsive */

/* ===========================================
   31. CLIENT: BALANCE PAGE (Cüzdan)
   =========================================== */

/* Wallet Hero with Balance Cards */
.lc-wallet-hero {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.wallet-hero-header {
    margin-bottom: 2rem;
}

.wallet-hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wallet-hero-title i {
    font-size: 1.5rem;
    color: var(--bs-blue);
}

.wallet-hero-subtitle {
    font-size: 0.9375rem;
    color: var(--text-faded);
    margin: 0;
}

.wallet-hero-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.wallet-balance-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.wallet-balance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s;
}

.wallet-balance-card.primary::before {
    background: linear-gradient(90deg, transparent, var(--bs-blue), transparent);
}

.wallet-balance-card.secondary::before {
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

.wallet-balance-card:hover {
    transform: translateY(-2px);
    border-color: var(--bs-blue-overlay-30);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.wallet-balance-card:hover::before {
    opacity: 1;
}

.balance-card-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--bs-blue-overlay-15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.wallet-balance-card.secondary .balance-card-icon {
    background: rgba(34, 197, 94, 0.15);
}

.balance-card-icon i {
    font-size: 1.5rem;
    color: var(--bs-blue);
}

.wallet-balance-card.secondary .balance-card-icon i {
    color: #22c55e;
}

.wallet-balance-card:hover .balance-card-icon {
    transform: scale(1.05);
}

.balance-card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.balance-card-label {
    font-size: 0.875rem;
    color: var(--text-faded);
    font-weight: 500;
}

.balance-card-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
}

.balance-card-amount .currency {
    font-size: 1.25rem;
    color: var(--text-color-muted);
    margin-left: 0.25rem;
}

.balance-card-action {
    flex-shrink: 0;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.balance-card-action.secondary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.balance-card-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--bs-blue-overlay-40);
}

.balance-card-action.secondary:hover {
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.balance-card-action:active {
    transform: translateY(0);
}

.balance-card-action i {
    font-size: 1rem;
}

/* History - Filters & Cards */
.lc-history-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.lc-filter-btn {
    flex-shrink: 0;
    height: 46px;
    padding: 0 1.25rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text-color-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.lc-filter-btn:hover {
    background: var(--bg-white);
    border-color: var(--bs-blue-overlay-30);
    color: var(--text-color);
}

.lc-filter-btn.active {
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    border-color: var(--bs-blue);
    color: #fff;
    box-shadow: 0 2px 8px var(--bs-blue-overlay-30);
}

.lc-filter-btn i {
    font-size: 1rem;
}

.lc-history-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lc-history-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    gap: 1.25rem;
    transition: all 0.3s;
}

.lc-history-card:hover {
    transform: translateY(-2px);
    border-color: var(--bs-blue-overlay-30);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.history-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.history-card-icon.deposit {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.history-card-icon.withdrawal {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.history-card-icon.transfer-in,
.history-card-icon.transfer-out {
    background: var(--bs-blue-overlay-15);
    color: var(--bs-blue);
}

.history-card-icon.balance-transfer {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.history-card-icon.purchase {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.history-card-content {
    flex: 1;
    min-width: 0;
}

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

.history-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.history-card-amount {
    font-size: 1.25rem;
    font-weight: 700;
    white-space: nowrap;
}

.history-card-amount.positive {
    color: #22c55e;
}

.history-card-amount.negative {
    color: #ef4444;
}

.history-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.history-card-date {
    font-size: 0.8125rem;
    color: var(--text-faded);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.history-card-date i {
    font-size: 0.875rem;
}

.history-card-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.history-card-badge.status-0 {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.history-card-badge.status-1 {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.history-card-badge.status-2 {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.history-card-badge i {
    font-size: 0.875rem;
}

.history-card-description {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-color-muted);
}

/* Empty State */
.lc-history-empty {
    text-align: center;
    padding: 4rem 2rem;
}

/* Wallet Tabs - Segmented Control */
.lc-wallet-tabs-container {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.lc-wallet-tabs-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
}

.lc-segmented-control {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.50rem;
    gap: 0.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--bs-blue-overlay-30) transparent;
}

.lc-segmented-control::-webkit-scrollbar {
    height: 4px;
}

.lc-segmented-control::-webkit-scrollbar-track {
    background: transparent;
}

.lc-segmented-control::-webkit-scrollbar-thumb {
    background: var(--bs-blue-overlay-30);
    border-radius: 2px;
}

.lc-segment-btn {
    flex: 1;
    min-width: max-content;
    height: 46px;
    padding: 0 1.25rem;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--text-faded);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: all 0.3s;
    position: relative;
}

.lc-segment-btn:hover {
    color: var(--text-color);
    background: var(--bg-white);
}

.lc-segment-btn.active {
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    color: #fff;
    box-shadow: 0 2px 8px var(--bs-blue-overlay-30);
}

.lc-segment-btn i {
    font-size: 1rem;
}

/* Wallet Tabs Body */
.lc-wallet-tabs-body {
    padding: 2rem;
    position: relative;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

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

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

/* ========================================
   WALLET TAB CONTENTS STYLES
======================================== */

/* Section Titles */
.tab-content .section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-content h4.section-title {
    font-size: 1.25rem;
}

.tab-content h5.form-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Payment Methods Section */
.payment-methods-section {
    margin-bottom: 2rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.payment-method-card {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.payment-method-card:hover {
    background: var(--bg-white);
    border-color: var(--bs-blue-overlay-30);
    transform: translateY(-2px);
}

.payment-method-card.active {
    background: linear-gradient(135deg, var(--bs-blue-overlay-15) 0%, var(--bs-blue-overlay) 100%);
    border-color: var(--bs-blue);
    box-shadow: 0 4px 12px var(--bs-blue-overlay-20);
}

.payment-method-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.payment-method-card .method-icon {
    font-size: 2rem;
    color: var(--bs-blue);
}

.payment-method-card .method-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
}

.payment-method-card .method-info {
    font-size: 0.8125rem;
    color: var(--text-faded);
}

.payment-method-card.active .method-info {
    color: var(--bs-blue-overlay-90);
}

/* Payment Forms */
.payment-form {
    margin-top: 2rem;
}

.card-form, .transfer-form {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color-muted);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    outline: none;
    background: var(--bg-white);
    border-color: var(--bs-blue);
    box-shadow: 0 0 0 3px var(--bs-blue-overlay);
}

.form-control::placeholder {
    color: var(--text-subtle);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Input with Icon */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-left {
    position: absolute;
    left: 1rem;
    color: var(--text-faded);
    font-size: 1.125rem;
    pointer-events: none;
    z-index: 1;
}

.input-with-icon .form-control {
    padding-left: 2.75rem;
    padding-right: 3rem;
}

.input-icon-right {
    position: absolute;
    right: 1rem;
    color: var(--text-faded);
    font-size: 0.875rem;
    font-weight: 600;
    pointer-events: none;
}

/* Buttons */
.btn {
    height: 50px;
    padding: 0 1.5rem;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    color: #fff;
    box-shadow: 0 4px 12px var(--bs-blue-overlay-30);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--bs-blue-overlay-40);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-color-muted);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-white);
}

.btn-sm {
    height: 42px;
    padding: 0 1.25rem;
    font-size: 13px;
}

.btn-lg {
    height: 60px;
    padding: 0 1.75rem;
    font-size: 18px;
}

.w-100 {
    width: 100%;
}

/* Payment Summary */
.payment-summary {
    background: linear-gradient(135deg, var(--bs-blue-overlay) 0%, var(--bs-blue-overlay-05) 100%);
    border: 1px solid var(--bs-blue-overlay-20);
    border-radius: 12px;
    padding: 1.5rem;
}

.summary-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.25rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

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

.item-label {
    font-size: 0.875rem;
    color: var(--text-color-muted);
}

.item-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0.75rem;
    margin-top: 0.75rem;
    border-top: 2px solid var(--bs-blue-overlay-30);
}

.total-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.total-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bs-blue);
}

.payment-security {
    margin-top: 1rem;
    padding: 0.875rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    color: var(--text-color-muted);
}

.payment-security i {
    color: #22c55e;
    font-size: 1.125rem;
}

/* Bank Accounts */
.bank-accounts-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bank-account-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
}

.bank-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.875rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.bank-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-label {
    font-size: 0.8125rem;
    color: var(--text-faded);
    min-width: 100px;
}

.info-value {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Courier New', monospace;
}

.copy-btn {
    height: 32px;
    padding: 0 0.625rem;
    background: var(--bs-blue-overlay-15);
    border: 1px solid var(--bs-blue-overlay-30);
    border-radius: 6px;
    color: var(--bs-blue);
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: var(--bs-blue-overlay-25);
    transform: translateY(-1px);
}

.bank-note {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-color-muted);
}

.bank-note i {
    color: #f97316;
    font-size: 1rem;
    margin-top: 0.125rem;
}

/* Info Cards */
.info-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.info-card-header {
    padding: 1.25rem;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card-header i {
    font-size: 1.5rem;
    color: var(--bs-blue);
}

.info-card-header h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.info-card-body {
    padding: 1.25rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--text-color-muted);
    line-height: 1.5;
}

.info-list li i {
    color: #22c55e;
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.info-list li i.text-danger {
    color: #ef4444;
}

.balance-reminder {
    margin-top: 1.25rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--bs-blue-overlay-15) 0%, var(--bs-blue-overlay) 100%);
    border: 1px solid var(--bs-blue-overlay-30);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.balance-reminder span {
    font-size: 0.875rem;
    color: var(--text-color-muted);
}

.balance-reminder strong {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bs-blue);
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.alert-warning {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--text-color);
}

.alert-warning i {
    color: #f97316;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.alert h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 0.25rem 0;
}

.alert p {
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   TAKAS (BAKIYELER ARASI TRANSFER)
======================================== */

.transfer-between-form {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

/* Transfer Direction Selector */
.transfer-direction-selector {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.direction-option {
    position: relative;
}

.direction-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.direction-card {
    display: block;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.direction-card:hover {
    background: var(--bg-white);
    border-color: var(--bs-blue-overlay-30);
}

.direction-option input[type="radio"]:checked + .direction-card {
    background: linear-gradient(135deg, var(--bs-blue-overlay-15) 0%, var(--bs-blue-overlay) 100%);
    border-color: var(--bs-blue);
    box-shadow: 0 4px 12px var(--bs-blue-overlay-20);
}

.direction-card-inner .balance-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.balance-icon-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.balance-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-blue-overlay-20) 0%, var(--bs-blue-overlay-15) 100%);
    border: 2px solid var(--bs-blue-overlay-40);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.balance-icon-circle i {
    font-size: 1.5rem;
    color: var(--bs-blue);
}

.balance-icon-wrapper span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color-muted);
    text-align: center;
}

.direction-arrow {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.arrow-body {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--bs-blue-overlay-50) 0%, var(--bs-blue-overlay-30) 100%);
}

.arrow-head {
    width: 0;
    height: 0;
    border-left: 8px solid var(--bs-blue-overlay-50);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    position: absolute;
    right: -8px;
    top: -4px;
}

.direction-arrow.reverse .arrow-body {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.3) 0%, rgba(34, 197, 94, 0.5) 100%);
}

.direction-arrow.reverse .arrow-head {
    border-left: none;
    border-right: 8px solid rgba(34, 197, 94, 0.5);
    right: auto;
    left: -8px;
}

.commission-badge {
    padding: 0.375rem 0.75rem;
    background: var(--bs-blue-overlay-15);
    border: 1px solid var(--bs-blue-overlay-30);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bs-blue);
    white-space: nowrap;
}

.commission-badge.free {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

/* Transfer Visualization */
.transfer-visualization {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.balance-visualization {
    flex: 1;
    padding: 1.25rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
}

.balance-vis-label {
    font-size: 0.8125rem;
    color: var(--text-faded);
    margin-bottom: 0.5rem;
}

.balance-vis-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bs-blue);
}

.balance-vis-new-amount {
    margin-top: 0.75rem;
}

.old-balance-strikethrough {
    font-size: 0.875rem;
    color: var(--text-subtle);
    text-decoration: line-through;
}

.new-balance-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #22c55e;
    margin-top: 0.25rem;
}

.transfer-vis-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bs-blue-overlay-15);
    border: 2px solid var(--bs-blue-overlay-30);
    display: flex;
    align-items: center;
    justify-content: center;
}

.transfer-vis-arrow i {
    font-size: 1.25rem;
    color: var(--bs-blue);
}

/* Transfer Summary */
.transfer-summary {
    padding: 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.summary-subtitle {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.875rem;
}

/* ========================================
   CARİ HESAP (CREDIT)
======================================== */

/* Pre-Approved Credit Card */
.pre-approved-credit-card {
    background: linear-gradient(135deg, var(--bs-blue-overlay) 0%, var(--bs-blue-overlay-05) 100%);
    border: 1px solid var(--bs-blue-overlay-20);
    border-radius: 16px;
    overflow: hidden;
}

/* No Credit Info Card */
.no-credit-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem 2rem;
}

.no-credit-icon {
    display: inline-block;
}

.no-credit-icon .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-blue-overlay-15) 0%, var(--bs-blue-overlay-08) 100%);
    border: 2px solid var(--bs-blue-overlay-30);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.no-credit-icon i {
    font-size: 2rem;
    color: var(--bs-blue);
}

.no-credit-info-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.credit-info-content {
    max-width: 700px;
    margin: 0 auto;
}

.credit-info-content p {
    font-size: 0.9375rem;
    color: var(--text-color-muted);
    line-height: 1.6;
}

.credit-info-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.credit-info-steps .credit-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    max-width: 140px;
}

.credit-info-steps .step-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bs-blue-overlay-20) 0%, var(--bs-blue-overlay-15) 100%);
    border: 2px solid var(--bs-blue-overlay-30);
    display: flex;
    align-items: center;
    justify-content: center;
}

.credit-info-steps .step-icon i {
    font-size: 1.5rem;
    color: var(--bs-blue);
}

.credit-info-steps .step-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

.credit-info-steps .step-arrow {
    color: var(--text-subtle);
    font-size: 1.25rem;
}

.no-credit-info-card .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 20px var(--bs-blue-overlay-40);
}

.no-credit-info-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--bs-blue-overlay-50);
    color: var(--text-color);
}

.credit-card-header {
    padding: 1.5rem;
    background: var(--bs-blue-overlay);
    border-bottom: 1px solid var(--bs-blue-overlay-20);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.credit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--bs-blue-overlay-30);
}

.credit-icon i {
    font-size: 1.75rem;
    color: var(--text-color);
}

.credit-title h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.25rem 0;
}

.credit-title p {
    font-size: 0.875rem;
    color: var(--text-color-muted);
    margin: 0;
}

.credit-card-body {
    padding: 2rem 1.5rem;
}

.credit-limit {
    text-align: center;
    margin-bottom: 2rem;
}

.credit-limit-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-faded);
    margin-bottom: 0.5rem;
}

.credit-limit-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bs-blue);
    line-height: 1;
}

.credit-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.credit-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.credit-feature-item i {
    font-size: 1.125rem;
    color: var(--bs-blue);
    flex-shrink: 0;
}

.credit-feature-item span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-color-muted);
}

.credit-cta {
    text-align: center;
}

.btn-credit-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 2rem;
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 6px 20px var(--bs-blue-overlay-40);
}

.btn-credit-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--bs-blue-overlay-50);
    color: var(--text-color);
}

/* Credit Application Form */
.credit-application-form {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.vade-info-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
}

.vade-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vade-info-icon i {
    font-size: 1.5rem;
    color: #22c55e;
}

.vade-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.vade-info-label {
    font-size: 0.8125rem;
    color: var(--text-faded);
}

.vade-info-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #22c55e;
}

.credit-terms-checkbox {
    padding: 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    background-color: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--bs-blue);
    border-color: var(--bs-blue);
}

.form-check-label {
    margin-left: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-color-muted);
    cursor: pointer;
}

/* Credit Details Card */
.credit-details-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.credit-details-header {
    padding: 1.25rem;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.credit-details-header h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.credit-details-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.credit-details-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.credit-details-item:last-child {
    border-bottom: none;
}

.credit-details-item.highlight {
    padding: 1rem;
    background: var(--bs-blue-overlay);
    border: 1px solid var(--bs-blue-overlay-20);
    border-radius: 8px;
}

.details-label {
    font-size: 0.875rem;
    color: var(--text-color-muted);
}

.details-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
}

.credit-details-item.highlight .details-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bs-blue);
}

.credit-details-footer {
    padding: 1.25rem;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
}

.credit-note {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.875rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.credit-note i {
    color: #f97316;
    font-size: 1rem;
    margin-top: 0.125rem;
}

.credit-note p {
    font-size: 0.8125rem;
    color: var(--text-color-muted);
    margin: 0;
    line-height: 1.5;
}

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

.btn-outline-primary:hover {
    background: var(--bs-blue-overlay);
    border-color: var(--bs-blue);
    color: var(--bs-blue);
}

/* Active Credit Details */
.active-credit-detail-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.active-credit-detail-card .card-header {
    padding: 1.5rem;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.active-credit-detail-card .card-body {
    padding: 1.5rem;
}

.credit-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.credit-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.credit-info-item .info-label {
    font-size: 0.875rem;
    color: var(--text-color-muted);
}

.credit-info-item .info-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
}

/* ========================================
   BANKA HESABI MODALI
======================================== */

#modal-banka-hesabi .modal-content {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#modal-banka-hesabi .modal-header {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
}

#modal-banka-hesabi .modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

#modal-banka-hesabi .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

#modal-banka-hesabi .btn-close:hover {
    opacity: 1;
}

#modal-banka-hesabi .modal-body {
    padding: 2rem;
}

#modal-banka-hesabi label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color-muted);
    margin-bottom: 0.5rem;
}

/* Balance Page Responsive */

/* ===========================================
   32. CLIENT: ORDERS PAGE (Seller Dashboard)
   =========================================== */

/* Seller Dashboard Container */
.seller-dashboard {
    padding: 2rem 0 0 0;
}

/* Welcome Hero Section */
.seller-welcome-hero {
    background: linear-gradient(135deg, var(--bs-blue-overlay) 0%, var(--bs-blue-overlay-05) 100%);
    border: 1px solid var(--bs-blue-overlay-20);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.seller-welcome-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-blue), var(--bs-blue-gradient), var(--bs-blue));
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: var(--bs-blue-overlay-15);
    border: 1px solid var(--bs-blue-overlay-30);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bs-blue);
    margin-bottom: 1rem;
}

.welcome-badge i {
    font-size: 1rem;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.welcome-text {
    font-size: 1rem;
    color: var(--text-faded);
    margin: 0;
}

.welcome-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Seller Buttons */
.seller-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 50px;
    padding: 0 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.seller-btn i {
    font-size: 1.125rem;
}

.seller-btn-primary {
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    color: var(--text-color);
    box-shadow: 0 4px 16px var(--bs-blue-overlay-30);
}

.seller-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--bs-blue-overlay-40);
    color: var(--text-color);
}

.seller-btn-secondary {
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text-color);
}

.seller-btn-secondary:hover {
    background: var(--bg-white);
    border-color: var(--text-subtle);
    color: var(--text-color);
}

/* Stats Overview Cards */
.stats-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-overview-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: var(--text-subtle);
}

.stat-overview-card:hover::before {
    opacity: 1;
}

.stat-overview-card.stat-blue::before {
    background: linear-gradient(90deg, var(--bs-blue), var(--bs-blue-gradient));
}

.stat-overview-card.stat-green::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.stat-overview-card.stat-orange::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.stat-overview-card.stat-purple::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-blue .stat-card-icon {
    background: linear-gradient(135deg, var(--bs-blue-overlay-20) 0%, var(--bs-blue-overlay) 100%);
    color: var(--bs-blue);
}

.stat-green .stat-card-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.1) 100%);
    color: #10b981;
}

.stat-orange .stat-card-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.1) 100%);
    color: #f59e0b;
}

.stat-purple .stat-card-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(124, 58, 237, 0.1) 100%);
    color: #8b5cf6;
}

.stat-card-trend,
.stat-card-count {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.stat-card-trend.stat-up {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.stat-card-count {
    background: var(--bg-white);
    color: var(--text-color-muted);
}

.stat-card-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.stat-card-label {
    font-size: 0.875rem;
    color: var(--text-faded);
}

/* Quick Actions Grid */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.quick-action-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-action-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-action-card:hover {
    transform: translateX(4px);
    border-color: var(--text-subtle);
}

.quick-action-card:hover::before {
    opacity: 1;
}

.quick-action-primary::before {
    background: linear-gradient(180deg, var(--bs-blue), var(--bs-blue-gradient));
}

.quick-action-success::before {
    background: linear-gradient(180deg, #10b981, #059669);
}

.quick-action-info::before {
    background: linear-gradient(180deg, #8b5cf6, #7c3aed);
}

.quick-action-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.quick-action-primary .quick-action-icon {
    background: linear-gradient(135deg, var(--bs-blue-overlay-20) 0%, var(--bs-blue-overlay) 100%);
    color: var(--bs-blue);
}

.quick-action-success .quick-action-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.1) 100%);
    color: #10b981;
}

.quick-action-info .quick-action-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(124, 58, 237, 0.1) 100%);
    color: #8b5cf6;
}

.quick-action-content {
    flex: 1;
}

.quick-action-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 0.25rem 0;
}

.quick-action-desc {
    font-size: 0.875rem;
    color: var(--text-faded);
    margin: 0;
}

.quick-action-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: none;
    background: var(--bg-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-faded);
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    background: var(--bg-white);
    color: var(--text-color);
}

/* Seller Tabs */
.seller-tabs-container {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.seller-segmented-control {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.seller-segment-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 50px;
    padding: 0 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-faded);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.seller-segment-btn i {
    font-size: 1.125rem;
}

.seller-segment-btn:hover {
    background: var(--bg-white);
    color: var(--text-color-muted);
}

.seller-segment-btn.active {
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    color: var(--text-color);
    box-shadow: 0 4px 12px var(--bs-blue-overlay-30);
}

.seller-tabs-content {
    margin-top: 2rem;
}

.seller-tab-pane {
    display: none;
}

.seller-tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.seller-tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.seller-tab-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.25rem 0;
}

.seller-tab-subtitle {
    font-size: 0.9375rem;
    color: var(--text-faded);
    margin: 0;
}

/* Products Grid */
.seller-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.seller-product-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.seller-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: var(--text-subtle);
}

.product-card-header {
    position: relative;
    padding-top: 75%;
}

.product-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.product-card-body {
    padding: 1.5rem;
}

.product-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-blue);
    margin-bottom: 1rem;
}

.product-card-stats {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.product-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-faded);
}

.product-stat i {
    font-size: 1rem;
    color: var(--text-subtle);
}

.product-card-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
}

.product-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 46px;
    padding: 0 0.75rem;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-action-btn i {
    font-size: 1rem;
}

.edit-btn {
    background: linear-gradient(135deg, var(--bs-blue-overlay-15) 0%, var(--bs-blue-overlay) 100%);
    border: 1px solid var(--bs-blue-overlay-30);
    color: var(--bs-blue);
}

.edit-btn:hover {
    background: linear-gradient(135deg, var(--bs-blue-overlay-25) 0%, var(--bs-blue-overlay-20) 100%);
    border-color: var(--bs-blue-overlay-50);
    color: var(--bs-blue);
}

.delete-btn {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.delete-btn:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(220, 38, 38, 0.2) 100%);
    border-color: rgba(239, 68, 68, 0.5);
    color: #ef4444;
}

/* Sales List */
.seller-sales-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.seller-sale-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.seller-sale-card:hover {
    border-color: var(--text-subtle);
    background: var(--bg-white);
}

.sale-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #10b981;
}

.sale-card-content {
    flex: 1;
    min-width: 0;
}

.sale-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sale-card-info {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.sale-buyer,
.sale-stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-faded);
}

.sale-buyer i,
.sale-stock i {
    font-size: 1rem;
    color: var(--text-subtle);
}

.sale-card-price {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #10b981;
}

/* Stock List */
.seller-stock-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.seller-stock-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.seller-stock-card:hover {
    border-color: var(--text-subtle);
    background: var(--bg-white);
}

.stock-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #f59e0b;
}

.stock-card-content {
    flex: 1;
    min-width: 0;
}

.stock-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stock-card-code {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-faded);
    font-family: 'Courier New', monospace;
}

.stock-card-code i {
    font-size: 1rem;
    color: var(--text-subtle);
}

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

.stock-delete-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.stock-delete-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

/* Messages List */
.seller-messages-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.seller-message-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.seller-message-card:hover {
    border-color: var(--text-subtle);
    background: var(--bg-white);
}

.message-card-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #8b5cf6;
}

.message-card-content {
    flex: 1;
    min-width: 0;
}

.message-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.message-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.message-card-info {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.message-sender,
.message-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-faded);
}

.message-sender i,
.message-date i {
    font-size: 1rem;
    color: var(--text-subtle);
}

.message-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 46px;
    padding: 0 1.25rem;
    background: linear-gradient(135deg, var(--bs-blue-overlay-15) 0%, var(--bs-blue-overlay) 100%);
    border: 1px solid var(--bs-blue-overlay-30);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bs-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.message-action-btn:hover {
    background: linear-gradient(135deg, var(--bs-blue-overlay-25) 0%, var(--bs-blue-overlay-20) 100%);
    border-color: var(--bs-blue-overlay-50);
    color: var(--bs-blue);
}

/* Seller Modal Styles */
.lc-seller-modal {
    background: var(--bg-white) !important;
    border: 1px solid var(--border) !important;
    border-radius: 20px !important;
    overflow: hidden;
}

.lc-seller-modal .lc-form-input,
.lc-seller-modal .lc-form-textarea,
.lc-seller-modal .lc-form-select {
    background: var(--input-bg);
    border-color: var(--input-border);
    color: var(--text-color);
}

.lc-seller-modal .lc-form-input:focus,
.lc-seller-modal .lc-form-textarea:focus,
.lc-seller-modal .lc-form-select:focus {
    background: var(--input-bg);
    border-color: var(--bs-blue);
    color: var(--text-color);
}

.lc-seller-modal .lc-form-input::placeholder,
.lc-seller-modal .lc-form-textarea::placeholder {
    color: var(--input-placeholder);
}

.lc-seller-modal .lc-form-label {
    color: var(--text-color);
}

.lc-seller-modal .lc-form-label i {
    color: var(--bs-blue);
}

.lc-seller-modal .btn-secondary {
    background: var(--bg-white-2);
    border-color: var(--border);
    color: var(--text-color);
}

.lc-seller-modal .btn-secondary:hover {
    background: var(--bg-white);
    border-color: var(--text-subtle);
}

.lc-seller-modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--bs-blue-overlay-08) 0%, var(--bs-blue-overlay-02) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.lc-seller-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
}

.modal-header-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--bs-blue) 0%, #2563eb 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px var(--bs-blue-overlay-30);
}

.modal-header-icon.stock-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.modal-header-icon.edit-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.modal-header-content {
    flex: 1;
}

.lc-seller-modal .lc-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lc-seller-modal .lc-modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.modal-header-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.modal-header-subtitle {
    font-size: 0.875rem;
    color: var(--text-subtle);
    margin: 0;
}

.lc-seller-modal-body {
    padding: 2rem;
}

.seller-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.seller-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.seller-modal-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

/* File Upload Wrapper */
.file-upload-wrapper {
    position: relative;
}

.file-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    background: var(--bg-white-2);
    border: 2px dashed var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-upload-label:hover {
    border-color: var(--bs-blue);
    background: var(--bs-blue-overlay-05);
}

.file-upload-label i {
    font-size: 2rem;
    color: var(--bs-blue);
}

.file-upload-label span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-color);
}

.file-upload-label small {
    font-size: 0.8125rem;
    color: var(--text-subtle);
}

/* Current Product Image */
.current-product-image {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-white-2);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.current-product-image img {
    max-width: 200px;
    max-height: 150px;
    object-fit: contain;
    border-radius: 8px;
}

/* Form Hint Box */
.form-hint-box {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bs-blue-overlay-08);
    border: 1px solid var(--bs-blue-overlay-15);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--text-color-muted);
}

.form-hint-box i {
    color: var(--bs-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .seller-form-grid {
        grid-template-columns: 1fr;
    }
    
    .lc-seller-modal-header {
        padding: 1.25rem 1.5rem;
    }
    
    .modal-header-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .modal-header-title {
        font-size: 1.125rem;
    }
    
    .lc-seller-modal-body {
        padding: 1.5rem;
    }
    
    .seller-modal-actions {
        flex-direction: column;
    }
    
    .seller-modal-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.status-badge i {
    font-size: 0.875rem;
}

.status-success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.status-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.status-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

/* Form Elements */
.lc-form-group {
    margin-bottom: 1.5rem;
}

.lc-form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.required {
    color: #ef4444;
}

/* ===========================================
   SHOP/STORE PAGE
   =========================================== */

/* Shop Header */
.lc-shop-header {
    position: relative;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.shop-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-hover) 100%);
}

.shop-header-content {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    padding: 2rem;
    padding-top: 60px;
}

.shop-avatar {
    position: relative;
    flex-shrink: 0;
}

.shop-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid var(--bg-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.shop-avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--bg-white-2) 0%, var(--bg-white) 100%);
    border: 4px solid var(--bg-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-subtle);
}

.shop-verified-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 32px;
    height: 32px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1rem;
    border: 3px solid var(--bg-white);
}

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

.shop-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.shop-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.shop-rating i {
    font-size: 1.125rem;
    color: var(--star-color);
}

.shop-rating i.fi-rr-star {
    color: var(--text-subtle);
}

.shop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.shop-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-color-muted);
}

.shop-meta .meta-item i {
    color: var(--text-subtle);
}

.shop-meta .meta-item.success {
    color: var(--success-color);
}

.shop-meta .meta-item.success i {
    color: var(--success-color);
}

.shop-actions {
    flex-shrink: 0;
}

/* Shop Stats Card */
.lc-shop-stats-card {
    padding: 1.5rem !important;
}

.lc-shop-stats-card .stats-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.lc-shop-stats-card .stats-title i {
    color: var(--bs-blue);
    font-size: 1.25rem;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.stat-icon.blue {
    background: var(--bs-blue-overlay-15);
    color: var(--bs-blue);
}

.stat-icon.orange {
    background: var(--warning-color-overlay-15, rgba(255, 193, 7, 0.15));
    color: var(--warning-color);
}

.stat-icon.red {
    background: var(--danger-color-overlay-15, rgba(220, 53, 69, 0.15));
    color: var(--danger-color);
}

.stat-icon.green {
    background: var(--success-color-overlay-15, rgba(16, 191, 124, 0.15));
    color: var(--success-color);
}

.stat-content {
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-subtle);
}

.success-progress {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.success-progress .progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-color-muted);
}

.success-progress .progress {
    height: 8px;
    background: var(--bg-white-2);
    border-radius: 10px;
    overflow: hidden;
}

.success-progress .progress-bar {
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* Shop Badges */
.lc-shop-badges {
    padding: 1.25rem !important;
}

.lc-shop-badges .badges-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.badges-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: var(--bg-white-2);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-color-muted);
}

.badge-item i {
    font-size: 0.875rem;
    color: var(--text-subtle);
}

.badge-item.gold {
    background: var(--star-color-overlay-15, rgba(255, 222, 0, 0.15));
    border-color: var(--star-color-overlay-30, rgba(255, 222, 0, 0.3));
    color: var(--star-color);
}

.badge-item.gold i {
    color: var(--star-color);
}

.badge-item.green {
    background: var(--success-color-overlay-15, rgba(16, 191, 124, 0.15));
    border-color: var(--success-color-overlay-30, rgba(16, 191, 124, 0.3));
    color: var(--success-color);
}

.badge-item.green i {
    color: var(--success-color);
}

/* Shop Products Header */
.lc-shop-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.products-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.products-title i {
    color: var(--bs-blue);
}

.products-count {
    font-size: 0.9375rem;
    color: var(--text-subtle);
    padding: 0.375rem 0.875rem;
    background: var(--bg-white-2);
    border-radius: 50px;
}

/* Shop Product Card */
.lc-product-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lc-product-card:hover {
    border-color: var(--bs-blue-overlay-30);
    box-shadow: 0 8px 24px var(--bs-blue-overlay-12);
    transform: translateY(-4px);
}

.lc-product-card .product-image {
    display: block;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

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

.lc-product-card .product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.lc-product-card .product-badge.discount {
    background: var(--danger-color);
    color: var(--bg-white);
}

.lc-product-card .product-content {
    padding: 1rem;
}

.lc-product-card .product-name {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lc-product-card .product-name:hover {
    color: var(--bs-blue);
}

.lc-product-card .product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lc-product-card .price-current {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bs-blue);
}

.lc-product-card .price-old {
    font-size: 0.875rem;
    color: var(--text-subtle);
    text-decoration: line-through;
}

.lc-product-card .product-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    background: var(--bg-white-2);
    border-top: 1px solid var(--border);
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lc-product-card .product-action:hover {
    background: var(--bs-blue);
    color: var(--bg-white);
}

/* Empty State */
.lc-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.lc-empty-state .empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-white-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-subtle);
}

.lc-empty-state h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.lc-empty-state p {
    font-size: 0.9375rem;
    color: var(--text-subtle);
    margin: 0;
}

/* ===========================================
   BLOG PAGE
   =========================================== */

/* Page Header */
.lc-page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.lc-page-header .page-title {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.lc-page-header .page-title i {
    color: var(--bs-blue);
}

.lc-page-header .page-desc {
    font-size: 1rem;
    color: var(--text-subtle);
    margin: 0;
}

/* Blog Card */
.lc-blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.lc-blog-card:hover {
    border-color: var(--bs-blue-overlay-30);
    box-shadow: 0 8px 24px var(--bs-blue-overlay-12);
    transform: translateY(-4px);
}

.lc-blog-card .blog-image {
    display: block;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.lc-blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.lc-blog-card .blog-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lc-blog-card:hover .blog-image-overlay {
    opacity: 1;
}

.lc-blog-card .blog-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lc-blog-card .blog-meta {
    margin-bottom: 0.75rem;
}

.lc-blog-card .meta-date {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-subtle);
}

.lc-blog-card .meta-date i {
    font-size: 0.875rem;
}

.lc-blog-card .blog-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.lc-blog-card .blog-title a {
    color: var(--text-color);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.lc-blog-card .blog-title a:hover {
    color: var(--bs-blue);
}

.lc-blog-card .blog-excerpt {
    font-size: 0.9375rem;
    color: var(--text-color-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lc-blog-card .blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bs-blue);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.lc-blog-card .blog-read-more:hover {
    gap: 0.75rem;
}

/* Blog Detail Page - Minimal */
.lc-blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    color: var(--text-subtle);
}

.lc-blog-breadcrumb a {
    color: var(--text-color-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.lc-blog-breadcrumb a:hover {
    color: var(--bs-blue);
}

.lc-blog-breadcrumb i {
    font-size: 0.75rem;
}

.lc-blog-breadcrumb span {
    color: var(--text-subtle);
}

/* Blog Article - Minimal */
.lc-blog-article.lc-card {
    overflow: hidden;
}

.lc-blog-article .article-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.lc-blog-article .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lc-blog-article .article-body {
    padding: 1.5rem;
}

.lc-blog-article .article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-subtle);
}

.lc-blog-article .article-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.lc-blog-article .article-meta i {
    font-size: 0.875rem;
}

.lc-blog-article .article-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.4;
    margin-bottom: 1.25rem;
}

.lc-blog-article .article-content {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-color);
}

.lc-blog-article .article-content p {
    margin-bottom: 1rem;
}

.lc-blog-article .article-content a {
    color: var(--bs-blue);
}

.lc-blog-article .article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.lc-blog-article .article-content h2,
.lc-blog-article .article-content h3 {
    font-weight: 600;
    color: var(--text-color);
    margin: 1.25rem 0 0.75rem;
}

.lc-blog-article .article-content blockquote {
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    background: var(--bg-white-2);
    border-left: 3px solid var(--bs-blue);
    border-radius: 0 8px 8px 0;
    color: var(--text-color-muted);
}

/* Article Footer */
.lc-blog-article .article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.lc-blog-article .share-section {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    color: var(--text-subtle);
}

.lc-blog-article .share-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--bg-white-2);
    color: var(--text-color-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.lc-blog-article .share-btn:hover {
    background: var(--bs-blue);
    color: var(--bg-white);
}

.lc-blog-article .back-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-color-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.lc-blog-article .back-link:hover {
    color: var(--bs-blue);
}

.lc-form-input,
.lc-form-textarea,
.lc-form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 10px;
    font-size: 0.9375rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.lc-form-input:focus,
.lc-form-textarea:focus,
.lc-form-select:focus {
    outline: none;
    border-color: var(--bs-blue);
    background: var(--input-bg);
    box-shadow: 0 0 0 3px var(--bs-blue-overlay);
}

.lc-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.lc-form-select {
    cursor: pointer;
}

.input-with-suffix {
    position: relative;
}

.input-with-suffix .lc-form-input {
    padding-right: 3rem;
}

.input-suffix {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--text-faded);
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-faded);
}

/* Modal Styles */
.lc-modal-content {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.lc-modal-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.lc-modal-title i {
    font-size: 1.5rem;
    color: var(--bs-blue);
}

.lc-modal-body {
    padding: 2rem;
}

.product-image-preview {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.product-image-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Order Detail Modal Styles */
.lc-order-detail-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Order Detail Header */
.order-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--bs-blue-overlay) 0%, var(--bs-blue-overlay-05) 100%);
    border: 1px solid var(--bs-blue-overlay-20);
    border-radius: 12px;
}

img.detail-product-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    flex-shrink: 0;
    object-fit: cover;
    border: 2px solid var(--bs-blue-overlay-40);
    box-shadow: 0 4px 12px var(--bs-blue-overlay-20);
}

div.detail-product-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--bs-blue-overlay-40);
    box-shadow: 0 4px 12px var(--bs-blue-overlay-20);
}

div.detail-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-product-info {
    flex: 1;
}

.detail-product-info h4 {
    color: var(--text-color);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.625rem 0;
}

.detail-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.detail-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-faded);
    font-size: 0.8125rem;
}

.detail-meta span i {
    color: var(--bs-blue);
    font-size: 0.9375rem;
}

/* Seller Badge */
.detail-seller-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--bs-blue-overlay);
    border: 1px solid var(--bs-blue-overlay-25);
    border-radius: 8px;
    color: var(--text-color-muted);
    font-size: 0.875rem;
}

.detail-seller-badge i {
    color: var(--bs-blue);
}

.detail-seller-badge strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Product Content (ÖNEMLİ ALAN) */
.detail-product-content {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.content-header i {
    color: var(--bs-blue);
    font-size: 1.125rem;
}

.content-header h5 {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.btn-copy-content {
    background: var(--bs-blue-overlay-15);
    border: 1px solid var(--bs-blue-overlay-30);
    color: var(--bs-blue);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-copy-content:hover {
    background: var(--bs-blue-overlay-25);
    transform: translateY(-1px);
}

.btn-copy-content i {
    font-size: 1rem;
}

.content-body {
    padding: 1.5rem;
    color: var(--text-color);
    line-height: 1.7;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875rem;
    max-height: 350px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.2);
}

.content-body::-webkit-scrollbar {
    width: 8px;
}

.content-body::-webkit-scrollbar-track {
    background: var(--bg-white);
    border-radius: 4px;
}

.content-body::-webkit-scrollbar-thumb {
    background: var(--bs-blue-overlay-40);
    border-radius: 4px;
}

.content-body::-webkit-scrollbar-thumb:hover {
    background: var(--bs-blue-overlay-60);
}

/* Order Detail Wrapper (from Controller) */
.order-detail-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.order-detail-content {
    background: var(--bg-white-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.order-detail-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-detail-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-detail-action.success {
    background: var(--success-color-overlay-15, rgba(16, 191, 124, 0.15));
    color: var(--success-color);
}

.btn-detail-action.success:hover {
    background: var(--success-color);
    color: var(--bg-white);
}

.btn-detail-action.warning {
    background: var(--warning-color-overlay-15, rgba(255, 193, 7, 0.15));
    color: var(--warning-color);
}

.btn-detail-action.warning:hover {
    background: var(--warning-color);
    color: #000;
}

.order-detail-error {
    text-align: center;
    padding: 3rem 2rem;
}

.order-detail-error i {
    font-size: 3rem;
    color: var(--danger-color);
    margin-bottom: 1rem;
    display: block;
}

.order-detail-error p {
    color: var(--text-color-muted);
    font-size: 1rem;
    margin: 0;
}

/* Detail Actions */
.detail-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}

.detail-action-btn {
    flex: 1;
    min-width: 150px;
    height: 50px;
    padding: 0 1.25rem;
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.detail-action-btn i {
    font-size: 1.125rem;
}

.detail-action-btn.success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: var(--text-color);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.detail-action-btn.success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.detail-action-btn.warning {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: var(--text-color);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.detail-action-btn.warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.detail-action-btn.secondary {
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text-faded);
    cursor: not-allowed;
}

.detail-action-btn.secondary:disabled {
    opacity: 0.6;
}

/* Orders Page Responsive */

/* ===========================================
   33. CLIENT: DEALER PAGE (Bayilik)
   =========================================== */

/* Client Section */
.lc-client-section {
    padding: 2rem 0 0 0;
}

/* Section Header */
.lc-section-header {
    margin-bottom: 1.5rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.section-title i {
    font-size: 1.5rem;
    color: var(--bs-blue);
}

.section-subtitle {
    font-size: 0.875rem;
    color: var(--text-faded);
    margin: 0;
}

/* Dealer Stats Grid */
.lc-dealer-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.lc-stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s;
}

.lc-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: var(--bg-white);
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-faded);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.lc-stat-card.dealer-stat-primary {
    background: linear-gradient(135deg, var(--bs-blue-overlay-15) 0%, var(--bs-blue-overlay-05) 100%);
    border-color: var(--bs-blue-overlay-30);
}

.lc-stat-card.dealer-stat-primary .stat-icon {
    background: var(--bs-blue-overlay-15);
    color: var(--bs-blue);
}

.lc-stat-card.dealer-stat-blue {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

.lc-stat-card.dealer-stat-blue .stat-icon {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.lc-stat-card.dealer-stat-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.05) 100%);
    border-color: rgba(34, 197, 94, 0.3);
}

.lc-stat-card.dealer-stat-green .stat-icon {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

/* Info Alert */
.lc-info-alert {
    background: linear-gradient(135deg, var(--bs-blue-overlay) 0%, var(--bs-blue-overlay-05) 100%);
    border: 1px solid var(--bs-blue-overlay-30);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.lc-info-alert .alert-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: var(--bs-blue-overlay-15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-blue);
    font-size: 1.75rem;
}

.lc-info-alert .alert-content {
    flex: 1;
}

.lc-info-alert .alert-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.625rem;
}

.lc-info-alert .alert-text {
    font-size: 0.9375rem;
    color: var(--text-color-muted);
    line-height: 1.6;
    margin: 0;
}

/* Dealer Alert */
.lc-dealer-alert {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.05) 100%);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.lc-dealer-alert .alert-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    font-size: 1.5rem;
}

.lc-dealer-alert .alert-content {
    flex: 1;
}

.lc-dealer-alert .alert-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.lc-dealer-alert .alert-text {
    font-size: 0.875rem;
    color: var(--text-color-muted);
    line-height: 1.6;
}

/* Dealer Card */
.lc-dealer-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Dealer Progress */
.dealer-progress-content {
    margin-top: 1.5rem;
}

.next-level-info {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
}

.next-level-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.next-level-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.75rem;
}

.next-level-details {
    flex: 1;
}

.next-level-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.375rem;
}

.next-level-discount {
    font-size: 0.875rem;
    color: var(--text-faded);
}

.dealer-progress-bar-wrapper {
    margin-top: 1.5rem;
}

.progress-bar-container {
    height: 14px;
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    border-radius: 10px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.75rem;
    position: relative;
}

.progress-percentage {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-label-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.progress-label-item.center {
    text-align: center;
}

.progress-label-item.right {
    text-align: right;
}

.label-text {
    font-size: 0.75rem;
    color: var(--text-faded);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.label-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Max Level */
.max-level-achieved {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 14px;
}

.max-level-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 2rem;
}

.max-level-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.max-level-text {
    font-size: 0.9375rem;
    color: var(--text-color-muted);
    margin: 0;
}

/* 2-Column Grid */
.lc-dealer-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Timeline */
.dealer-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.timeline-icon.assign {
    background: var(--bs-blue-overlay-15);
    color: var(--bs-blue);
}

.timeline-icon.upgrade {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.timeline-icon.downgrade {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.timeline-icon.remove {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.timeline-content {
    flex: 1;
}

.timeline-date {
    font-size: 0.75rem;
    color: var(--text-faded);
    margin-bottom: 0.375rem;
}

.timeline-text {
    font-size: 0.875rem;
    color: var(--text-color-muted);
    line-height: 1.5;
}

.timeline-view-all {
    text-align: center;
    margin-top: 0.5rem;
}

/* API Promo Card */
.dealer-promo-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-color: rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.dealer-promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.dealer-promo-card .promo-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.dealer-promo-card .promo-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.dealer-promo-card .promo-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color-muted);
    margin-bottom: 1rem;
}

.dealer-promo-card .promo-text {
    font-size: 0.875rem;
    color: var(--text-faded);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.promo-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-color-muted);
}

.promo-feature-item i {
    color: #22c55e;
    font-size: 1.125rem;
}

/* Advantages Grid */
.dealer-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.advantage-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s;
}

.advantage-card:hover {
    transform: translateY(-4px);
    background: var(--bg-white);
    border-color: var(--bs-blue-overlay-30);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--bs-blue-overlay-15) 0%, var(--bs-blue-overlay) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-blue);
    font-size: 1.75rem;
}

.advantage-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.advantage-desc {
    font-size: 0.875rem;
    color: var(--text-faded);
    line-height: 1.5;
    margin: 0;
}

/* Application Form */
.dealer-application-form {
    margin-top: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-actions {
    margin-top: 2rem;
}

/* Pending Application */
.dealer-application-pending {
    margin-top: 1.5rem;
}

.pending-alert {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 14px;
    margin-bottom: 2rem;
}

.pending-alert .alert-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    font-size: 1.75rem;
}

.pending-alert .alert-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.625rem;
}

.pending-alert .alert-text {
    font-size: 0.9375rem;
    color: var(--text-color-muted);
    line-height: 1.6;
    margin: 0;
}

.application-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: var(--bg-white);
    border: 2px solid var(--border);
    color: var(--text-subtle);
}

.timeline-step.completed .step-circle {
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    border-color: var(--bs-blue);
    color: var(--text-color);
}

.timeline-step.active .step-circle {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-color: #f97316;
    color: var(--text-color);
    animation: pulse 2s ease-in-out infinite;
}

.step-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-faded);
    text-align: center;
}

.timeline-step.completed .step-label,
.timeline-step.active .step-label {
    color: var(--text-color);
}

.timeline-line {
    width: 80px;
    height: 2px;
    background: var(--bg-white);
    margin-bottom: 2.5rem;
}

.pending-actions {
    text-align: center;
}

.dealer-contact-action {
    text-align: center;
    margin-top: 2rem;
}

/* Dealer History */
.dealer-history-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.history-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.history-item .history-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.history-content {
    flex: 1;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.625rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.history-action {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
}

.history-date {
    font-size: 0.8125rem;
    color: var(--text-faded);
}

.history-detail {
    font-size: 0.875rem;
    color: var(--text-color-muted);
    line-height: 1.6;
}

.history-description {
    font-size: 0.8125rem;
    color: var(--text-faded);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

/* Empty State */
.lc-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(249, 115, 22, 0);
    }
}

/* Dealer Page Responsive */

/* ===========================================
   34. CLIENT: SUBSCRIPTION PAGE (Abonelik)
   =========================================== */

/* Active Subscription */
.lc-active-subscription {
    background: linear-gradient(135deg, var(--bs-blue-overlay) 0%, var(--bs-blue-overlay-05) 100%);
    border: 1px solid var(--bs-blue-overlay-30);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.lc-active-subscription::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-blue), var(--bs-blue-gradient), var(--bs-blue));
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

.active-sub-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    color: var(--text-color);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.active-sub-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.active-sub-header {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.active-sub-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px var(--bs-blue-overlay-30);
}

.active-sub-icon i {
    font-size: 2rem;
    color: var(--text-color);
}

.active-sub-info {
    flex: 1;
}

.active-sub-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.active-sub-desc {
    font-size: 0.9375rem;
    color: var(--text-color-muted);
    margin: 0;
}

.active-sub-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
}

.sub-stat-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
}

.sub-stat-label {
    font-size: 0.8125rem;
    color: var(--text-faded);
    margin-bottom: 0.5rem;
}

.sub-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.active-sub-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar-wrapper {
    flex: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-color-muted);
    white-space: nowrap;
}

.active-sub-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Info Alert Content */
.info-alert-content {
    font-size: 0.875rem;
    color: var(--text-color-muted);
}

.info-alert-content strong {
    color: var(--text-color);
}

/* Subscription Grid */
.lc-subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.lc-subscription-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

.lc-subscription-card:hover {
    transform: translateY(-4px);
    border-color: var(--bs-blue-overlay-30);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.lc-subscription-card.active {
    border-color: var(--bs-blue-overlay-50);
    background: linear-gradient(135deg, var(--bs-blue-overlay) 0%, var(--bs-blue-overlay-05) 100%);
}

.sub-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.sub-card-badge.active {
    background: var(--bs-blue-overlay-20);
    color: var(--bs-blue);
}

.sub-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.sub-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--bs-blue-overlay-30);
}

.sub-card-icon i {
    font-size: 2rem;
    color: var(--text-color);
}

.sub-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.sub-card-desc {
    font-size: 0.875rem;
    color: var(--text-faded);
    margin: 0;
}

.sub-card-price {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-color-muted);
    margin-left: 0.25rem;
}

.price-period {
    display: block;
    font-size: 0.875rem;
    color: var(--text-faded);
    margin-top: 0.5rem;
}

.sub-card-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-color-muted);
}

.feature-item i {
    font-size: 1rem;
    color: #22c55e;
    flex-shrink: 0;
}

.sub-card-footer .lc-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

/* Subscription History */
.lc-subscription-history,
.lc-earnings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Earning Card */
.lc-earning-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    gap: 1.25rem;
    transition: all 0.3s;
}

.lc-earning-card:hover {
    transform: translateY(-2px);
    border-color: var(--bs-blue-overlay-30);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.earning-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.earning-card-icon i {
    font-size: 1.5rem;
    color: #22c55e;
}

.earning-card-content {
    flex: 1;
    min-width: 0;
}

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

.earning-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.earning-card-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #22c55e;
    white-space: nowrap;
}

.earning-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: var(--text-faded);
}

.earning-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.earning-meta-item i {
    font-size: 0.875rem;
}

/* Detail Grid */
.lc-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.lc-detail-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
}

.detail-label {
    font-size: 0.8125rem;
    color: var(--text-faded);
    margin-bottom: 0.5rem;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.detail-value.text-success {
    color: #22c55e;
}

.lc-pagination {
    display: flex;
    justify-content: center;
}

/* Subscription Page Responsive */

/* ===========================================
   35. CLIENT: PRODUCT PAGE (Ürün Siparişleri)
   =========================================== */

/* Orders Container */
.lc-orders-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Order Card */
.lc-order-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.lc-order-card:hover {
    border-color: var(--bs-blue-overlay-30);
}

.lc-order-card.pending-order {
    border-color: rgba(249, 115, 22, 0.3);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(249, 115, 22, 0.02) 100%);
}

/* Order Card Header */
.order-card-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 1.5rem;
    transition: all 0.3s;
}

.order-card-header:hover {
    background: var(--bg-white);
}

.order-header-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    min-width: 0;
}

.order-icon-wrapper {
    flex-shrink: 0;
}

.order-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    box-shadow: 0 4px 12px var(--bs-blue-overlay-25);
}

.order-icon.warning-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.order-icon i {
    font-size: 1.75rem;
    color: var(--text-color);
}

.order-product-preview {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.order-product-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-count {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--bs-blue-overlay-95);
    color: var(--text-color);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 4px 0 0 0;
}

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

.order-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.375rem 0;
}

.order-subtitle {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-faded);
    margin: 0;
}

.order-subtitle i {
    font-size: 0.875rem;
}

.order-separator {
    color: var(--text-subtle);
}

.order-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.order-price {
    text-align: right;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-faded);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
}

/* Status Badges */
/* Order Status Wrapper */
.order-status-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.375rem;
}

.order-status-badge {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.order-status-badge i {
    font-size: 0.9375rem;
}

/* Sipariş Durum Renkleri */
.order-status-completed {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.order-status-pending {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.order-status-partial {
    background: var(--bs-blue-overlay-15);
    color: var(--bs-blue);
    border: 1px solid var(--bs-blue-overlay-30);
}

.order-status-cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.order-status-detail {
    font-size: 0.75rem;
    color: var(--text-faded);
    font-weight: 500;
}

/* Eski warning badge (bekleyen siparişler için) */
.warning-badge {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.warning-badge i {
    font-size: 0.9375rem;
}

/* Order Toggle Button */
.order-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text-color-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.order-toggle-btn:hover {
    background: var(--bs-blue-overlay);
    border-color: var(--bs-blue-overlay-30);
    color: var(--bs-blue);
}

.order-toggle-btn i {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.order-card-header.active .order-toggle-btn i {
    transform: rotate(180deg);
}

/* Order Card Body */
.order-card-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid transparent;
}

.order-card-header.active + .order-card-body {
    max-height: 3000px;
    opacity: 1;
    border-top-color: var(--border);
}

/* Order Product Item */
.lc-order-product-item {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

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

.lc-order-product-item:hover {
    background: var(--bg-white);
}

.product-item-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.product-item-img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.product-item-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.product-item-name a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.product-item-name a:hover {
    color: var(--bs-blue);
}

.product-item-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-faded);
}

.meta-item i {
    font-size: 0.875rem;
}

.product-item-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.product-item-price {
    text-align: right;
}

/* Product Status Badge */
.product-status-badge {
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.success-status {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.warning-status {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.danger-status {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.product-status-badge i {
    font-size: 0.9375rem;
}

/* Product Actions */
.product-item-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-product-action {
    height: 42px;
    padding: 0 1rem;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-product-action i {
    font-size: 0.9375rem;
}

.btn-product-action.primary {
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    color: var(--text-color);
    box-shadow: 0 2px 8px var(--bs-blue-overlay-25);
}

.btn-product-action.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--bs-blue-overlay-35);
}

.btn-product-action.success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.25);
}

.btn-product-action.success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}

.btn-product-action.warning {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.25);
}

.btn-product-action.warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

.btn-product-action.secondary {
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text-faded);
}

.btn-product-action.secondary:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Warning Button */
/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.alert-warning {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--text-color-muted);
}

.alert i {
    font-size: 1.125rem;
    color: #f97316;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Client Product Page Responsive */

/* ===========================================
   41. STREAMER PANEL - LEGACY THEME SUPPORT
   =========================================== */

/* Future/Ori Theme Classes for Streamer Pages */
.fp-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.fp-card-client {
    margin-bottom: 1.5rem;
}

.fp-cc-head {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.fp-cc-head.border-bottom-0 {
    border-bottom: none;
}

.fp-cc-head .title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.fp-cc-head.d-flex {
    display: flex;
}

.fp-cc-head.align-items-center {
    align-items: center;
}

.fp-cc-head.justify-content-between {
    justify-content: space-between;
}

.fp-cc-body {
    padding: 2rem;
    text-align: left !important;
}

/* Tabs Navigation */
.fp-card-tabs {
    padding: 0 2rem;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.fp-tabs-nav-system {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.fp-tabs-nav-system li {
    list-style: none;
}

.fp-tabs-nav-system .link {
    display: inline-block;
    padding: 1rem 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-faded);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
}

.fp-tabs-nav-system .link:hover {
    color: var(--text-color);
    border-bottom-color: var(--bs-blue-overlay-50);
}

.fp-tabs-nav-system .link.active {
    color: var(--bs-blue);
    border-bottom-color: var(--bs-blue);
}

/* Tabs Content */
.fp-tabs {
    padding: 2rem 0;
}

.fp-tabs-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.fp-tabs-content.active {
    display: block;
}

/* Info Items (Streamer Stats) */
.fp-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bs-blue-overlay) 0%, var(--bs-blue-overlay-05) 100%);
    border: 1px solid var(--bs-blue-overlay-20);
    border-radius: 16px;
    transition: all 0.3s;
}

.fp-info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--bs-blue-overlay-20);
}

.fp-info-item .content {
    flex: 1;
}

.fp-info-item .content .key {
    font-size: 0.875rem;
    color: var(--text-color-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.fp-info-item .content .value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
}

.fp-info-item .icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--bs-blue-overlay-30);
}

.fp-info-item .icon i {
    font-size: 1.75rem;
    color: var(--text-color);
}

/* Table Styling */
.fp-table-border {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.fp-table-border .table {
    margin: 0;
}

.fp-table-border .table thead {
    background: var(--bg-white);
}

.fp-table-border .table thead th {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color-muted);
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fp-table-border .table tbody td {
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

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

.fp-table-border .table tbody tr:hover {
    background: var(--bg-white);
}

.fp-table-border .table .text-center {
    text-align: center;
}

.fp-table-border .table .text-end {
    text-align: right;
}

/* Modal Styling for Support */
.modal-content {
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.modal-header .modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.modal-header .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 0.7;
}

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

.modal-body {
    padding: 2rem;
}

/* Form Elements in Modals and Pages */
.fp-cc-body .form-control,
.modal-body .form-control,
.fp-tabs-content .form-control {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    color: var(--text-color);
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.fp-cc-body .form-control:focus,
.modal-body .form-control:focus,
.fp-tabs-content .form-control:focus {
    background: var(--bg-white);
    border-color: var(--bs-blue);
    box-shadow: 0 0 0 3px var(--bs-blue-overlay);
    outline: none;
}

.fp-cc-body .form-control::placeholder,
.modal-body .form-control::placeholder,
.fp-tabs-content .form-control::placeholder {
    color: var(--text-subtle);
}

.fp-cc-body textarea.form-control,
.modal-body textarea.form-control,
.fp-tabs-content textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.fp-cc-body label,
.modal-body label,
.fp-tabs-content label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color-muted);
}

.fp-cc-body .mb-3,
.modal-body .mb-3,
.fp-tabs-content .mb-3 {
    margin-bottom: 1.5rem;
}

/* Form Check (Checkbox/Radio) */
.form-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.form-check-input:checked {
    background-color: var(--bs-blue);
    border-color: var(--bs-blue);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px var(--bs-blue-overlay-20);
    outline: none;
}

.form-check-label {
    font-size: 0.9375rem;
    color: var(--text-color);
    cursor: pointer;
    margin: 0;
}

/* Buttons */
.fp-cc-body .btn,
.modal-body .btn,
.fp-tabs-content .btn,
.fp-cc-head .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.fp-cc-body .btn i,
.modal-body .btn i,
.fp-tabs-content .btn i,
.fp-cc-head .btn i {
    font-size: 1.125rem;
}

.fp-cc-body .btn-primary,
.modal-body .btn-primary,
.fp-tabs-content .btn-primary,
.fp-cc-head .btn-primary {
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    color: var(--text-color);
    box-shadow: 0 4px 16px var(--bs-blue-overlay-30);
}

.fp-cc-body .btn-primary:hover,
.modal-body .btn-primary:hover,
.fp-tabs-content .btn-primary:hover,
.fp-cc-head .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--bs-blue-overlay-40);
    color: var(--text-color);
}

.fp-cc-body .btn.w-100,
.modal-body .btn.w-100,
.fp-tabs-content .btn.w-100 {
    width: 100%;
}

.fp-cc-body .btn-sm,
.modal-body .btn-sm,
.fp-tabs-content .btn-sm,
.fp-cc-head .btn-sm {
    height: 42px;
    padding: 0 1rem;
    font-size: 13px;
}

.fp-cc-body .btn-opacity-primary,
.modal-body .btn-opacity-primary,
.fp-tabs-content .btn-opacity-primary,
.fp-cc-head .btn-opacity-primary {
    background: var(--bs-blue-overlay-15);
    border: 1px solid var(--bs-blue-overlay-30);
    color: var(--bs-blue);
}

.fp-cc-body .btn-opacity-primary:hover,
.modal-body .btn-opacity-primary:hover,
.fp-tabs-content .btn-opacity-primary:hover,
.fp-cc-head .btn-opacity-primary:hover {
    background: var(--bs-blue-overlay-25);
    border-color: var(--bs-blue-overlay-50);
    color: var(--bs-blue);
}

/* Badge Styling */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    color: var(--text-color);
}

.badge.bg-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--text-color);
}

.badge.bg-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--text-color);
}

/* Responsive for Streamer Pages */

/* ===========================================
   42. TICKET DETAIL PAGE (Show Ticket)
   =========================================== */

/* Ticket Card Specific Styles */
.fp-card-ticket {
    margin-top: 0 !important;
}

.fp-card-ticket .fp-cc-head {
    background: linear-gradient(135deg, var(--bs-blue-overlay) 0%, var(--bs-blue-overlay-05) 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--bs-blue-overlay-20);
}

.ticket-title-section .title {
    margin-bottom: 0.75rem;
}

.ticket-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ticket-date {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-color-muted);
}

.ticket-date i {
    font-size: 1rem;
}

/* Messages Container */
.ticket-messages {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    text-align: left;
}

/* Individual Message */
.ticket-message {
    display: flex;
    gap: 1rem;
    animation: messageSlideIn 0.3s ease;
    text-align: left;
    width: 100%;
}

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

.message-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, var(--bs-blue-overlay-20) 0%, var(--bs-blue-overlay-15) 100%);
    border: 2px solid var(--bs-blue-overlay-30);
    color: var(--bs-blue);
}

.admin-message .message-avatar {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.15) 100%);
    border: 2px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.message-content {
    flex: 1;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    position: relative;
    text-align: left !important;
}

.admin-message .message-content {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-color: rgba(34, 197, 94, 0.2);
}

.message-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 16px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent var(--border) transparent transparent;
}

.admin-message .message-content::before {
    border-color: transparent rgba(34, 197, 94, 0.2) transparent transparent;
}

.message-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.message-author {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-color);
}

.admin-message .message-author {
    color: #22c55e;
}

.message-time {
    display: inline-flex;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--text-faded);
}

.message-time i {
    font-size: 0.875rem;
}

.message-body {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-color);
    word-wrap: break-word;
    text-align: left !important;
}

/* Reply Form */
.ticket-reply-form {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: left;
}

.reply-input-wrapper {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reply-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bs-blue-overlay-20) 0%, var(--bs-blue-overlay-15) 100%);
    border: 2px solid var(--bs-blue-overlay-30);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bs-blue);
    font-size: 1.25rem;
}

.reply-input-wrapper .form-control {
    flex: 1;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-color);
    font-size: 0.9375rem;
    resize: vertical;
    min-height: 80px;
    transition: all 0.3s;
    text-align: left !important;
}

.reply-input-wrapper .form-control:focus {
    background: var(--bg-white);
    border-color: var(--bs-blue);
    box-shadow: 0 0 0 3px var(--bs-blue-overlay);
    outline: none;
}

.reply-input-wrapper .form-control::placeholder {
    color: var(--text-subtle);
}

.reply-actions {
    display: flex;
    justify-content: flex-end;
}

.reply-actions .btn {
    min-width: 140px;
}

/* Ticket Closed Notice */
.ticket-closed-notice {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
}

.notice-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid rgba(239, 68, 68, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notice-icon i {
    font-size: 1.75rem;
    color: #ef4444;
}

.notice-text h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
}

.notice-text p {
    font-size: 0.9375rem;
    color: var(--text-color-muted);
    margin: 0;
    line-height: 1.5;
}

/* Responsive for Ticket Detail */

/* =================================
   REFERANS SİSTEMİ - LOCKED THEME
   =========================================== */

/* Referans İstatistik Kartları */
.lc-ref-stat-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-white-2) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lc-ref-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--bs-blue-overlay) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.lc-ref-stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--bs-blue-overlay-50);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.ref-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ref-stat-icon.primary {
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-gradient) 100%);
    box-shadow: 0 4px 16px var(--bs-blue-overlay-30);
}

.ref-stat-icon.success {
    background: linear-gradient(135deg, #10bf7c 0%, #0da268 100%);
    box-shadow: 0 4px 16px rgba(16, 191, 124, 0.3);
}

.ref-stat-icon.info {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 4px 16px rgba(23, 162, 184, 0.3);
}

.ref-stat-icon i {
    font-size: 26px;
    color: var(--text-color);
}

.ref-stat-content {
    flex: 1;
}

.ref-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
    line-height: 1;
}

.ref-stat-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Referans Kodu Kutusu */
.lc-ref-code-box {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.lc-ref-code-box:hover {
    border-color: var(--bs-blue-overlay-40);
}

.ref-code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.ref-code-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.ref-code-label i {
    font-size: 16px;
    color: var(--bs-blue);
}

.btn-edit-code {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-gray);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-edit-code:hover {
    background: var(--bg-white-2);
    border-color: var(--bs-blue);
    color: var(--bs-blue);
}

.ref-code-display {
    display: flex;
    gap: 8px;
}

.ref-code-display .form-control {
    background: var(--bg-white-2);
    border: 1px solid var(--border);
    color: var(--text-color);
    font-family: 'Courier New', monospace;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 8px;
}

.ref-code-display .form-control:focus {
    background: var(--bg-white-2);
    border-color: var(--bs-blue);
    box-shadow: 0 0 0 3px var(--bs-blue-overlay);
    color: var(--text-color);
}

.btn-copy {
    background: var(--bs-blue);
    border: none;
    color: var(--text-color);
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-copy:hover {
    background: var(--bs-blue-hover);
    transform: scale(1.05);
}

.btn-copy i {
    font-size: 16px;
}

/* Sosyal Medya Paylaşım */
.lc-ref-share-section {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}

.ref-share-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ref-share-title i {
    color: var(--bs-blue);
}

.ref-share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.ref-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ref-share-btn i {
    font-size: 18px;
}

.ref-share-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--text-color);
}

.ref-share-btn.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.ref-share-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: var(--text-color);
}

.ref-share-btn.telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.4);
}

.ref-share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: var(--text-color);
}

.ref-share-btn.twitter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(29, 161, 242, 0.4);
}

.ref-share-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dcc 100%);
    color: var(--text-color);
}

.ref-share-btn.facebook:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(24, 119, 242, 0.4);
}

/* Referans Veren Kişi */
.lc-ref-referrer-box {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-white-2) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.ref-referrer-header {
    background: var(--bs-blue-overlay);
    border-bottom: 1px solid var(--bs-blue-overlay-20);
    padding: 16px 20px;
}

.ref-referrer-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ref-referrer-title i {
    color: var(--bs-blue);
}

.ref-referrer-content {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ref-referrer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-hover) 100%);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px var(--bs-blue-overlay-30);
}

.ref-referrer-info {
    flex: 1;
}

.ref-referrer-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.ref-referrer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--text-gray);
}

.ref-referrer-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ref-referrer-meta i {
    font-size: 14px;
    color: var(--bs-blue);
}

/* Kullanıcı Listesi */
.lc-ref-users-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lc-ref-user-item {
    background: var(--bg-white-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.lc-ref-user-item:hover {
    background: var(--bg-white);
    border-color: var(--bs-blue-overlay-30);
    transform: translateX(4px);
}

.ref-user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10bf7c 0%, #0da268 100%);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.ref-user-info {
    flex: 1;
    min-width: 0;
}

.ref-user-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 6px;
}

.ref-user-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--text-gray);
}

.ref-user-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ref-user-meta i {
    font-size: 12px;
}

.ref-user-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ref-user-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.ref-user-badge.success {
    background: rgba(16, 191, 124, 0.15);
    color: var(--success-color);
    border: 1px solid rgba(16, 191, 124, 0.3);
}

.ref-user-badge.secondary {
    background: rgba(108, 117, 125, 0.15);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.ref-user-earning {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 14px;
    color: var(--success-color);
}

.ref-user-earning i {
    font-size: 16px;
}

/* Bonus Geçmişi */
.lc-ref-history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lc-ref-history-item {
    background: var(--bg-white-2);
    border: 1px solid var(--border);
    border-left: 3px solid var(--success-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.lc-ref-history-item:hover {
    background: var(--bg-white);
    border-left-width: 5px;
}

.ref-history-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(16, 191, 124, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ref-history-icon i {
    font-size: 20px;
    color: var(--success-color);
}

.ref-history-info {
    flex: 1;
    min-width: 0;
}

.ref-history-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.ref-history-desc {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.ref-history-date {
    font-size: 12px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ref-history-date i {
    font-size: 12px;
}

.ref-history-amount {
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.ref-history-amount.success {
    color: var(--success-color);
}

/* Bilgiler Bölümü */
.lc-ref-info-section {
    max-width: 800px;
}

.ref-info-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ref-info-title i {
    color: var(--bs-blue);
    font-size: 22px;
}

.ref-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.ref-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-white-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.ref-info-item:hover {
    background: var(--bg-white);
    border-color: var(--bs-blue-overlay-30);
}

.ref-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ref-info-icon.primary {
    background: var(--bs-blue-overlay-15);
}

.ref-info-icon.success {
    background: rgba(16, 191, 124, 0.15);
}

.ref-info-icon.info {
    background: rgba(23, 162, 184, 0.15);
}

.ref-info-icon i {
    font-size: 22px;
}

.ref-info-icon.primary i {
    color: var(--bs-blue);
}

.ref-info-icon.success i {
    color: var(--success-color);
}

.ref-info-icon.info i {
    color: #17a2b8;
}

.ref-info-content {
    flex: 1;
}

.ref-info-content h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.ref-info-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

.ref-info-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bs-blue-overlay);
    border: 1px solid var(--bs-blue-overlay-20);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 12px;
}

.ref-info-note i {
    font-size: 18px;
    color: var(--bs-blue);
    flex-shrink: 0;
}

.ref-info-note span {
    font-size: 14px;
    color: var(--text-color);
}

/* Referans Ayarlar Sayfası Stilleri */
.ref-settings-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
}

.ref-settings-title i {
    color: var(--bs-blue);
    font-size: 20px;
}

/* Referans İstatistik Listesi */
.lc-ref-stats-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lc-ref-stats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.lc-ref-stats-item:last-child {
    border-bottom: none;
}

.lc-ref-stats-item .label {
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 4px;
}

.lc-ref-stats-item .label i {
    font-size: 14px;
    cursor: help;
}

.lc-ref-stats-item .value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
}

/* Referans Info Alert */
.lc-ref-info-alert {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
}

.lc-ref-info-alert.info {
    background: var(--bs-blue-overlay);
    border: 1px solid var(--bs-blue-overlay-20);
}

.lc-ref-info-alert.warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.lc-ref-info-alert > i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.lc-ref-info-alert.info > i {
    color: var(--bs-blue);
}

.lc-ref-info-alert.warning > i {
    color: #ffc107;
}

.lc-ref-info-alert strong {
    color: var(--text-color);
    font-weight: 600;
}

.lc-ref-info-alert ul {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.8;
}

.lc-ref-info-alert small {
    color: var(--text-gray);
}

/* Spin Animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spin-animation {
    animation: spin 1s linear infinite;
}

/* Boş Durum */
.lc-ref-empty {
    text-align: center;
    padding: 60px 20px;
}

.ref-empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--bg-white-2) 0%, var(--bg-white) 100%);
    border: 2px dashed var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ref-empty-icon i {
    font-size: 44px;
    color: var(--text-gray);
}

.ref-empty-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
}

.ref-empty-text {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */

/* ===========================================
   CLIENT SIDEBAR STYLES
   =========================================== */

/* Client Section */
.lc-client-section {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

/* Client Sidebar */
.lc-client-sidebar {
    position: sticky;
    top: 100px;
}

/* User Card */
.lc-user-card {
    background: linear-gradient(135deg, var(--overlay-5) 0%, var(--overlay-2) 100%);
    border: 1px solid var(--overlay-10);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.lc-user-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--bs-blue), transparent);
    opacity: 0.6;
}

.user-avatar {
    flex-shrink: 0;
}

.avatar-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--bs-blue) 0%, var(--bs-blue-hover) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--bs-blue-overlay-25);
    transition: all 0.3s;
}

.lc-user-card:hover .avatar-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px var(--bs-blue-overlay-35);
}

.avatar-icon i {
    font-size: 2rem;
    color: #fff;
}

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

.user-email {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-balance {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bs-blue);
    background: var(--bs-blue-overlay);
    padding: 0.375rem 0.875rem;
    border-radius: 8px;
    border: 1px solid var(--bs-blue-overlay-20);
}

.user-balance i {
    font-size: 1rem;
}

/* Mobile Menu Toggle */
.lc-menu-toggle {
    width: 100%;
    padding: 1rem;
    background: var(--overlay-5);
    border: 1px solid var(--overlay-10);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 0.9375rem;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.lc-menu-toggle:hover {
    background: var(--overlay-8);
    border-color: var(--overlay-15);
}

.lc-menu-toggle i:first-child {
    font-size: 1.25rem;
}

.lc-menu-toggle span {
    flex: 1;
    text-align: left;
}

.lc-menu-toggle .toggle-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.lc-menu-toggle.active .toggle-arrow {
    transform: rotate(180deg);
}

/* Navigation */
.lc-client-nav {
    background: linear-gradient(135deg, var(--overlay-5) 0%, var(--overlay-2) 100%);
    border: 1px solid var(--overlay-10);
    border-radius: 16px;
    padding: 0.75rem;
}

.lc-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lc-nav-list li {
    margin-bottom: 0.375rem;
}

.lc-nav-list li:last-child {
    margin-bottom: 0;
}

.lc-nav-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    color: var(--text-color-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.lc-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--bs-blue);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.lc-nav-link:hover {
    background: var(--bs-blue-overlay);
    color: var(--text-color);
    transform: translateX(4px);
}

.lc-nav-link:hover::before {
    transform: scaleY(1);
}

.lc-nav-link.active {
    background: linear-gradient(135deg, var(--bs-blue-overlay-15) 0%, var(--bs-blue-overlay-08) 100%);
    color: var(--bs-blue);
}

.lc-nav-link.active::before {
    transform: scaleY(1);
}

.lc-nav-link i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.lc-nav-link span {
    flex: 1;
}

/* Logout Link */
.lc-nav-link-logout {
    color: rgba(239, 68, 68, 0.8);
}

.lc-nav-link-logout:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.lc-nav-link-logout::before {
    background: #ef4444;
}

/* Divider */
.lc-nav-divider {
    height: 1px;
    background: var(--overlay-10);
    margin: 0.75rem 0;
}


/* ===========================================
   RESPONSIVE MEDIA QUERIES
   Tüm media query'ler burada toplanmıştır
   =========================================== */

/* ----------------------------------------
   XXL - 1400px ve üzeri (min-width)
   ---------------------------------------- */
@media (min-width: 1400px) {
.container {
        max-width: 1500px !important;
    }
}

/* ----------------------------------------
   LG - 992px ve üzeri (min-width)
   ---------------------------------------- */
@media (min-width: 992px) {
.lc-slider-area .col-lg-9 {
        width: 72%;
    }
    .lc-slider-area .col-lg-3 {
        width: 28%;
    }
    
    .lc-header .right-area .mobile-menu-open-area {
        display: none;
    }
}

/* ----------------------------------------
   Below XXL - 1400px altı (max-width: 1399.98px)
   ---------------------------------------- */
@media (max-width: 1399.98px) {
.lc-navbar .list li .link {
        font-size: 14px;
    }
}

/* ----------------------------------------
   Below XL - 1200px altı (max-width: 1199.98px)
   ---------------------------------------- */
@media (max-width: 1199.98px) {
/* Add laptop styles here */
}

/* ----------------------------------------
   Below LG - 992px altı / Tablet (max-width: 991.98px)
   ---------------------------------------- */
@media (max-width: 991.98px) {
.lc-categories-sections {
        gap: 2.5rem;
    }
    
    .category-section-header {
        padding: 1.25rem;
    }
    
    .section-icon {
        width: 56px;
        height: 56px;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }
    
    .lc-categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .lc-category-card {
        padding: 1.25rem;
    }
    
    .category-image-wrapper {
        width: 70px;
        height: 70px;
    }
.lc-review-reminder {
        flex-direction: column;
        padding-right: 3rem;
    }
    
    .reminder-actions {
        flex-direction: row;
        min-width: auto;
    }
    
    .btn-reminder-primary,
    .btn-reminder-secondary {
        flex: 1;
    }
    
    .lc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
.seller-dashboard {
        padding: 1.75rem 0 0 0;
    }
    
    .seller-welcome-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .welcome-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .seller-btn {
        width: 100%;
    }
    
    .stats-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .seller-segmented-control {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .seller-segment-btn span {
        display: none;
    }
    
    .seller-segment-btn.active span {
        display: inline;
    }
    
    .seller-tab-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .seller-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .sale-card-info,
    .message-card-info {
        flex-direction: column;
        gap: 0.5rem;
    }
.lc-dealer-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .lc-dealer-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .dealer-advantages-grid {
        grid-template-columns: 1fr;
    }
    
    /* Shop Page */
    .shop-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 80px;
    }
    
    .shop-meta {
        justify-content: center;
    }
    
    .shop-actions {
        margin-top: 1rem;
    }
    
.order-header-right {
        flex-direction: column;
        align-items: flex-end;
    }
    
    .product-item-actions {
        width: 100%;
        justify-content: flex-end;
    }
.fp-cc-head {
        padding: 1.25rem 1.5rem;
    }
    
    .fp-cc-head .title {
        font-size: 1.25rem;
    }
    
    .fp-cc-body {
        padding: 1.5rem;
    }
    
    .fp-card-tabs {
        padding: 0 1.5rem;
    }
    
    .fp-info-item {
        padding: 1.25rem;
    }
    
    .fp-info-item .content .value {
        font-size: 1.5rem;
    }
    
    .fp-info-item .icon {
        width: 52px;
        height: 52px;
    }
    
    .fp-info-item .icon i {
        font-size: 1.5rem;
    }
.ticket-messages {
        gap: 1.25rem;
    }
    
    .message-avatar,
    .reply-avatar {
        width: 44px;
        height: 44px;
    }
    
    .message-avatar i,
    .reply-avatar i {
        font-size: 1.125rem;
    }
    
    .message-content {
        padding: 1rem;
    }
/* Layout */
    body {
        padding-bottom: 62px;
    }
    
    .lc-mobile-bar {
        display: block;
    }
    
    /* Slider */
    .lc-slider-alt-grid {
        grid-gap: 12px;
        margin-top: 16px;
    }
    
    .lc-swiper-home {
        margin-bottom: 16px;
    }
    
    .lc-home-slider-mini-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    
    .lc-home-slider-mini-grid > * {
        margin: 0;
    }
    
    /* Header */
    .lc-header .right-area .mobile-menu-open-area {
        display: block;
    }
    
    .lc-topnav,
    .lc-header .right-area .mobile-none,
    .lc-navbar {
        display: none;
    }
    
    .lc-header {
        padding: 20px 0;
    }
    
    .lc-header .right-area {
        gap: 12px;
        position: absolute;
        right: 12px;
        top: 0;
    }
    
    .lc-header .flex {
        flex-direction: column;
        gap: 20px;
    }
    
    .lc-header .search,
    .lc-header .logo-area {
        width: 100%;
    }
    
    .lc-header .container {
        position: relative;
    }
    
    .lc-header .logo-area {
        padding-right: 120px;
    }
    
    .lc-header .right-area .lc-nav-notification-menu {
        width: 300px;
    }
    
    .lc-nnm-item img {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    
    /* Navbar */
    .lc-navbar {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 300;
        width: 100%;
        height: calc(100svh - 160px);
        padding: 12px;
        display: none;
    }
    
    .lc-navbar .list {
        flex-direction: column;
    }
    
    .lc-navbar .list li {
        width: 100%;
    }
    
    .lc-navbar-dropdown-item {
        position: relative;
    }
    
    .lc-navbar .lc-navbar-dropdown-menu .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    /* Footer */
    .lc-footer .footer-content {
        margin-bottom: 20px;
    }
    
    .lc-footer .etbis-area {
        text-align: left;
    }
    
    /* Client Sidebar */
    .lc-client-sidebar {
        position: relative;
        top: 0;
    }
    
    .lc-menu-toggle {
        display: flex;
    }
    
    .lc-client-nav {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin-top: -1.5rem;
        padding: 0;
        border: none;
        background: transparent;
    }
    
    .lc-client-nav.active {
        max-height: 1000px;
        opacity: 1;
        margin-top: 0;
        padding: 0.75rem;
        border: 1px solid var(--overlay-10);
        background: linear-gradient(135deg, var(--overlay-5) 0%, var(--overlay-2) 100%);
    }
}

/* ----------------------------------------
   Below MD - 768px altı / Mobile (max-width: 767.98px)
   ---------------------------------------- */
@media (max-width: 767.98px) {
.lc-categories-sections {
        gap: 2rem;
    }
    
    .category-section-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.125rem;
        gap: 1rem;
    }
    
    .section-header-left {
        width: 100%;
        gap: 1rem;
    }
    
    .section-icon {
        width: 50px;
        height: 50px;
    }
    
    .section-title {
        font-size: 1.125rem;
    }
    
    .section-subtitle {
        font-size: 0.8125rem;
        flex-wrap: wrap;
    }
    
    .category-section-header .btn {
        width: 100%;
    }
    
    .lc-categories-search-wrapper {
        margin-bottom: 2rem;
    }
    
    .lc-categories-search .form-control {
        padding: 1rem 8.5rem 1rem 3rem;
        font-size: 0.9375rem;
    }
    
    .search-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .lc-categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.875rem;
    }
    
    .lc-category-card {
        padding: 1.125rem;
    }
    
    .category-image-wrapper {
        width: 65px;
        height: 65px;
    }
    
    .category-badge {
        width: 24px;
        height: 24px;
    }
    
    .category-badge i {
        font-size: 0.75rem;
    }
    
    .category-name {
        font-size: 0.9375rem;
    }
    
    .product-count {
        font-size: 0.75rem;
        padding: 0.3rem 0.625rem;
    }
    
    .product-count i {
        font-size: 0.75rem;
    }
    
    .view-link {
        font-size: 0.8125rem;
    }
    
    .category-arrow {
        width: 26px;
        height: 26px;
    }
    
    .category-arrow i {
        font-size: 0.8125rem;
    }
    
    .lc-no-results {
        padding: 3rem 1.5rem;
    }
    
    .no-results-icon {
        width: 80px;
        height: 80px;
    }
    
    .no-results-icon i {
        font-size: 2.5rem;
    }
    
    .lc-no-results h3 {
        font-size: 1.25rem;
    }
    
    .lc-no-results p {
        font-size: 0.9375rem;
    }
.lc-actions-grid {
        grid-template-columns: 1fr;
    }
.lc-wallet-hero {
        padding: 1.5rem;
    }
    
    .wallet-hero-header {
        margin-bottom: 1.5rem;
    }
    
    .wallet-hero-title {
        font-size: 1.5rem;
    }
    
    .wallet-hero-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .balance-card-amount {
        font-size: 1.5rem;
    }
    
    .balance-card-amount .currency {
        font-size: 1.125rem;
    }
    
    .lc-history-card {
        flex-direction: column;
        gap: 1rem;
    }
    
    .history-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .history-card-amount {
        font-size: 1.125rem;
    }
    
    .lc-wallet-tabs-body {
        padding: 1.5rem;
    }
.lc-client-section {
        padding-top: 1.75rem;
    }
    
    .lc-dealer-card {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-line {
        width: 60px;
    }
    
    .step-circle {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
.lc-active-subscription {
        padding: 1.5rem;
    }
    
    .active-sub-header {
        flex-direction: column;
        text-align: center;
    }
    
    .active-sub-stats {
        grid-template-columns: 1fr;
    }
    
    .active-sub-actions {
        flex-direction: column;
    }
    
    .active-sub-actions .lc-btn {
        width: 100%;
        justify-content: center;
    }
    
    .lc-subscription-grid {
        grid-template-columns: 1fr;
    }
    
    .earning-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
.lc-order-product-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .product-item-details {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .product-item-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .btn-product-action {
        flex: 1;
    }
.fp-cc-head.d-flex {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start !important;
    }
    
    .fp-cc-head .btn {
        width: 100%;
    }
    
    .fp-tabs-nav-system {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .fp-table-border {
        overflow-x: auto;
    }
    
    .fp-table-border .table {
        min-width: 600px;
    }
.fp-card-ticket .fp-cc-head {
        padding: 1.25rem 1.5rem;
    }
    
    .ticket-title-section .title {
        font-size: 1.25rem;
    }
    
    .ticket-meta {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .ticket-messages {
        gap: 1rem;
    }
    
    .ticket-message {
        gap: 0.75rem;
    }
    
    .message-avatar,
    .reply-avatar {
        width: 40px;
        height: 40px;
    }
    
    .message-avatar i,
    .reply-avatar i {
        font-size: 1rem;
    }
    
    .message-content {
        padding: 1rem;
    }
    
    .message-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .message-body {
        font-size: 0.875rem;
    }
    
    .ticket-reply-form {
        padding: 1.25rem;
    }
    
    .reply-input-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .reply-avatar {
        display: none;
    }
    
    .reply-actions .btn {
        width: 100%;
    }
    
    .ticket-closed-notice {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .notice-icon {
        width: 48px;
        height: 48px;
    }
    
    .notice-icon i {
        font-size: 1.5rem;
    }
    
    .notice-text h5 {
        font-size: 1rem;
    }
    
    .notice-text p {
        font-size: 0.875rem;
    }
.lc-ref-stat-card {
        padding: 16px;
    }
    
    .ref-stat-icon {
        width: 48px;
        height: 48px;
    }
    
    .ref-stat-icon i {
        font-size: 22px;
    }
    
    .ref-stat-number {
        font-size: 20px;
    }
    
    .ref-share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ref-referrer-content,
    .lc-ref-user-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ref-user-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .lc-ref-history-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ref-history-amount {
        align-self: flex-end;
    }
/* Slider */
    .lc-slider-alt-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        margin-top: 14px;
        padding-bottom: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .lc-slider-alt-grid::-webkit-scrollbar {
        display: none;
    }
    
    .lc-slider-alt-item {
        flex: 0 0 45%;
        min-width: 45%;
        scroll-snap-align: start;
        border-radius: 6px;
    }
    
    .lc-slider-alt-item img {
        width: 100%;
        height: auto;
    }
    
    /* Footer */
    .lc-footer .footer-contact .content {
        flex-direction: column;
    }
    
    .lc-footer .footer-contact .content .link-contact {
        flex: auto;
        width: 100%;
        height: 48px;
        font-size: 16px;
    }
    
    .lc-footer .footer-contact .content .link-contact i {
        font-size: 20px;
    }
    
    /* Section Head */
    .lc-section-head .left .title {
        font-size: 16px;
    }
    
    /* Header */
    .lc-header .right-area .lc-nav-notification-menu {
        left: inherit;
        right: 0;
        transform: inherit;
    }
    
    .lc-header .right-area .lc-nav-notification-menu::before {
        left: inherit;
        right: 18px;
        transform: translateX(0) rotate(-45deg);
    }
    
    /* Comments */
    .lc-customer-comments .lc-ccs-head {
        flex-direction: column;
    }
    
    .lc-customer-comments .flex-alt {
        flex-direction: column;
    }
    
    /* Swiper Buttons (600px and below) */
    .lc-swiper-pc-next, .lc-swiper-ph-next, .lc-swiper-streamers-next {
        right: 12px;
        z-index: 2;
    }
    
    .lc-swiper-pc-prev, .lc-swiper-ph-prev, .lc-swiper-streamers-prev {
        left: 12px;
        z-index: 2;
    }
}

/* ----------------------------------------
   Below SM - 576px altı / Small Mobile (max-width: 575.98px)
   ---------------------------------------- */
@media (max-width: 575.98px) {
.lc-section-page {
        padding: 1rem 0;
    }
    
    .lc-section-page-head {
        margin-bottom: 1.25rem;
    }
    
    .lc-section-page-head .title {
        font-size: 1.25rem;
    }
    
    .lc-section-page-head .subtitle {
        font-size: 0.8rem;
    }
    
    .cart-layout {
        gap: 1rem;
    }
    
    .lc-cart-items {
        gap: 0.75rem;
    }
    
    .lc-cart-item-card {
        grid-template-columns: 60px 1fr;
        gap: 0.6rem 0.75rem;
        padding: 0.75rem;
        border-radius: 12px;
    }
    
    .lc-cart-item-card .item-image img {
        width: 60px;
        height: 60px;
    }
    
    .lc-cart-item-card .item-info {
        padding-right: 25px;
    }
    
    .lc-cart-item-card .item-name {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .lc-cart-item-card .price-main {
        font-size: 0.9rem;
    }
    
    .lc-cart-item-card .price-old {
        font-size: 0.7rem;
    }
    
    .lc-cart-item-card .item-quantity,
    .lc-cart-item-card .item-total {
        padding-top: 0.6rem;
    }
    
    .lc-cart-item-card .quantity-control {
        height: 32px;
        padding: 0.2rem;
    }
    
    .lc-cart-item-card .qty-btn {
        width: 26px;
        height: 26px;
    }
    
    .lc-cart-item-card .quantity-control input {
        width: 32px;
        font-size: 0.8rem;
    }
    
    .lc-cart-item-card .total-price {
        font-size: 0.9rem;
    }
    
    .lc-cart-item-card .item-remove {
        width: 26px;
        height: 26px;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .cart-sidebar {
        margin-bottom: 1.5rem;
    }
    
    .cart-sidebar .lc-card {
        padding: 1rem !important;
        border-radius: 12px;
        width: 100%;
    }
    
    .summary-title {
        font-size: 1rem;
        margin-bottom: 0.65rem;
    }
    
    .summary-details {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .summary-details .detail-row {
        font-size: 0.8rem;
        padding: 0;
    }
    
    .summary-details .detail-row.total {
        padding-top: 0.5rem;
        margin-top: 0.25rem;
    }
    
    .summary-details .detail-row.total strong {
        font-size: 1.1rem;
    }
    
    /* Coupon section 575px */
    .coupon-section {
        margin-bottom: 0.75rem;
    }
    
    .coupon-toggle-btn {
        font-size: 0.8rem;
        padding: 0.65rem 0.875rem;
    }
    
    .coupon-toggle-btn i {
        font-size: 0.9rem;
    }
    
    .coupon-input-area {
        padding: 0.75rem;
    }
    
    .coupon-input {
        font-size: 0.8rem;
        padding: 0.65rem 0.65rem 0.65rem 2rem;
    }
    
    .coupon-apply-btn {
        font-size: 0.8rem;
        padding: 0.55rem 0.875rem;
    }
    
    /* Payment method 575px */
    .payment-method-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.65rem;
    }
    
    .lc-payment-method {
        padding: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .lc-payment-method .method-header {
        gap: 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .lc-payment-method .method-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
    
    .lc-payment-method .method-icon i {
        font-size: 1.1rem;
    }
    
    .lc-payment-method .method-info strong {
        font-size: 0.85rem;
    }
    
    .lc-payment-method .method-info small {
        font-size: 0.7rem;
    }
    
    .lc-payment-method .method-action-btn {
        font-size: 0.8rem;
        padding: 0.6rem;
        border-radius: 6px;
    }
    
    .security-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
    }
    
    .security-badges img {
        height: 18px;
    }
    
    .security-badges-inline img {
        height: 16px;
    }
    
    .empty-cart-content {
        padding: 2rem 1rem;
    }
    
    .empty-icon {
        width: 80px;
        height: 80px;
    }
    
    .empty-icon i {
        font-size: 2rem;
    }
    
    .empty-cart-content h2 {
        font-size: 1.25rem;
    }
    
    .empty-cart-content p {
        font-size: 0.85rem;
    }
    
    .empty-actions .btn {
        width: 100%;
    }
    
    /* Note: .lc-cart-progress is hidden on mobile (768px) */
    
    .lc-card {
        padding: 1rem !important;
    }
    
    .guest-info-card {
        padding: 0.875rem !important;
    }
    
    .trust-badges-card {
        padding: 0.875rem !important;
    }
    
    .empty-icon i {
        font-size: 2.5rem;
    }
    
    .empty-cart-content h2 {
        font-size: 1.375rem;
    }
    
    .empty-cart-content p {
        font-size: 0.9375rem;
    }
.lc-categories-sections {
        gap: 1.75rem;
    }
    
    .category-section-header {
        padding: 1rem;
    }
    
    .section-header-left {
        gap: 0.875rem;
    }
    
    .section-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
    }
    
    .category-section-header .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .lc-categories-search .form-control {
        padding: 1rem 1rem 1rem 3rem;
        text-align: left;
    }
    
    .search-badge {
        position: static;
        transform: none;
        margin-top: 0.75rem;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    .lc-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .lc-category-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .category-image-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }
    
    .category-badge {
        width: 22px;
        height: 22px;
        top: -2px;
        right: -2px;
    }
    
    .category-badge i {
        font-size: 0.6875rem;
    }
    
    .category-name {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }
    
    .product-count {
        font-size: 0.6875rem;
        padding: 0.25rem 0.5rem;
    }
    
    .product-count i {
        font-size: 0.6875rem;
    }
    
    .category-footer {
        padding-top: 0.5rem;
    }
    
    .view-link {
        font-size: 0.75rem;
    }
    
    .category-arrow {
        width: 24px;
        height: 24px;
    }
    
    .category-arrow i {
        font-size: 0.75rem;
    }
    
    .lc-no-results {
        padding: 2.5rem 1rem;
    }
.page-header-content {
        padding: 1.5rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-title i {
        font-size: 1.75rem;
    }
    
    .lc-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .lc-stat-card {
        padding: 1.25rem;
    }
    
    .stat-icon {
        width: 56px;
        height: 56px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .lc-review-reminder {
        padding: 1.25rem;
        padding-right: 3rem;
    }
    
    .reminder-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 32px;
        height: 32px;
    }
    
    .reminder-close i {
        font-size: 1.125rem;
    }
    
    .reminder-icon {
        width: 56px;
        height: 56px;
    }
    
    .reminder-icon i {
        font-size: 1.75rem;
    }
    
    .reminder-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .reminder-title {
        font-size: 1rem;
    }
    
    .reminder-actions {
        flex-direction: column;
    }
    
    .reminder-product {
        padding: 0.875rem;
    }
    
    .reminder-product-img-wrapper {
        width: 48px;
        height: 48px;
    }
.lc-wallet-hero {
        padding: 1.25rem;
    }
    
    .wallet-hero-title {
        font-size: 1.25rem;
    }
    
    .wallet-hero-title i {
        font-size: 1.25rem;
    }
    
    .wallet-balance-card {
        padding: 1.25rem;
        flex-wrap: wrap;
    }
    
    .balance-card-icon {
        width: 48px;
        height: 48px;
    }
    
    .balance-card-icon i {
        font-size: 1.25rem;
    }
    
    .balance-card-amount {
        font-size: 1.375rem;
    }
    
    .balance-card-action {
        width: 100%;
        margin-top: 0.75rem;
        justify-content: center;
    }
    
    .lc-filter-btn {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }
    
    .lc-filter-btn span {
        display: none;
    }
    
    .lc-filter-btn.active span {
        display: inline;
    }
    
    .lc-history-card {
        padding: 1rem;
    }
    
    .history-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .lc-segment-btn {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }
    
    .lc-segment-btn i {
        font-size: 0.875rem;
    }
    
    .lc-segment-btn span {
        display: none;
    }
    
    .lc-segment-btn.active span {
        display: inline;
    }
    
    .lc-wallet-tabs-body {
        padding: 1.25rem;
    }
    
    /* Wallet Tab Contents Mobile */
    .payment-methods {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    .payment-method-card {
        padding: 1rem;
    }
    
    .payment-method-card img {
        width: 40px;
        height: 40px;
    }
    
    .payment-method-card .method-icon {
        font-size: 1.75rem;
    }
    
    .payment-method-card .method-name {
        font-size: 0.8125rem;
    }
    
    .payment-method-card .method-info {
        font-size: 0.75rem;
    }
    
    .card-form, .transfer-form {
        padding: 1.25rem;
    }
    
    .form-control, .form-select {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .btn {
        height: 46px;
        padding: 0 1.25rem;
        font-size: 15px;
    }
    
    .btn-lg {
        height: 56px;
        padding: 0 1.5rem;
        font-size: 18px;
    }
    
    .payment-summary {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }
    
    .summary-title {
        font-size: 1rem;
    }
    
    .total-value {
        font-size: 1.125rem;
    }
    
    .bank-account-card {
        padding: 1rem;
    }
    
    .info-label {
        min-width: 80px;
        font-size: 0.75rem;
    }
    
    .info-value {
        font-size: 0.8125rem;
    }
    
    .info-card-header {
        padding: 1rem;
    }
    
    .info-card-body {
        padding: 1rem;
    }
    
    .info-list li {
        font-size: 0.8125rem;
    }
    
    .balance-reminder {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .alert {
        padding: 0.875rem 1rem;
    }
    
    .alert h5 {
        font-size: 0.9375rem;
    }
    
    .alert p {
        font-size: 0.8125rem;
    }
    
    /* Takas & Cari Hesap Mobile */
    .transfer-direction-selector {
        gap: 0.75rem;
    }
    
    .direction-card {
        padding: 1.25rem;
    }
    
    .balance-icons {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .balance-icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .balance-icon-circle i {
        font-size: 1.25rem;
    }
    
    .balance-icon-wrapper span {
        font-size: 0.8125rem;
    }
    
    .direction-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .commission-badge {
        transform: rotate(-90deg);
        font-size: 0.6875rem;
    }
    
    .transfer-visualization {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .balance-vis-amount {
        font-size: 1.125rem;
    }
    
    .new-balance-value {
        font-size: 1rem;
    }
    
    .transfer-vis-arrow {
        transform: rotate(90deg);
    }
    
    .no-credit-info-card {
        padding: 2rem 1.5rem;
    }
    
    .no-credit-icon .icon-circle {
        width: 64px;
        height: 64px;
    }
    
    .no-credit-icon i {
        font-size: 1.5rem;
    }
    
    .no-credit-info-card h4 {
        font-size: 1.25rem;
    }
    
    .credit-info-steps {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .credit-info-steps .credit-step {
        flex-direction: row;
        max-width: 100%;
    }
    
    .credit-info-steps .step-icon {
        width: 48px;
        height: 48px;
    }
    
    .credit-info-steps .step-icon i {
        font-size: 1.25rem;
    }
    
    .credit-info-steps .step-text {
        text-align: left;
        flex: 1;
    }
    
    .credit-info-steps .step-arrow {
        display: none;
    }
    
    .credit-card-header {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
    }
    
    .credit-icon {
        width: 50px;
        height: 50px;
    }
    
    .credit-icon i {
        font-size: 1.5rem;
    }
    
    .credit-title h4 {
        font-size: 1.125rem;
    }
    
    .credit-card-body {
        padding: 1.5rem 1.25rem;
    }
    
    .credit-limit-amount {
        font-size: 2rem;
    }
    
    .credit-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .credit-feature-item {
        padding: 0.75rem;
    }
    
    .btn-credit-primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .credit-application-form {
        padding: 1.25rem;
    }
    
    .vade-info-box {
        padding: 0.875rem;
    }
    
    .vade-info-icon {
        width: 40px;
        height: 40px;
    }
    
    .vade-info-icon i {
        font-size: 1.25rem;
    }
    
    .vade-info-value {
        font-size: 1rem;
    }
    
    .credit-details-card {
        margin-top: 1.5rem;
    }
    
    .credit-details-body {
        padding: 1rem;
    }
    
    .credit-details-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.375rem;
    }
    
    .details-value {
        font-size: 0.875rem;
    }
    
    .credit-details-item.highlight .details-value {
        font-size: 1rem;
    }
    
    #modal-banka-hesabi .modal-body {
        padding: 1.5rem;
    }
.seller-dashboard {
        padding: 1.5rem 0 0 0;
    }
    
    .seller-welcome-hero {
        padding: 1.5rem;
    }
    
    .welcome-title {
        font-size: 1.5rem;
    }
    
    .stats-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .seller-products-grid {
        grid-template-columns: 1fr;
    }
    
    .seller-tabs-container {
        padding: 1.5rem;
    }
    
    .seller-segment-btn {
        font-size: 0.875rem;
    }
    
    .seller-tab-title {
        font-size: 1.25rem;
    }
    
    .product-card-footer {
        grid-template-columns: 1fr;
    }
    
    .seller-sale-card,
    .seller-stock-card,
    .seller-message-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sale-card-price {
        align-self: flex-end;
    }
    
    .stock-card-actions,
    .message-action-btn {
        width: 100%;
    }
    
    .message-action-btn {
        justify-content: center;
    }
.lc-client-section {
        padding-top: 1.5rem;
    }
    
    .lc-stat-card {
        padding: 1.25rem;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .lc-info-alert {
        flex-direction: column;
        padding: 1.25rem;
    }
    
    .lc-info-alert .alert-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .lc-dealer-card {
        padding: 1.25rem;
    }
    
    .next-level-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .timeline-step {
        gap: 0.5rem;
    }
    
    .step-circle {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .timeline-line {
        width: 40px;
    }
    
    .progress-labels {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .progress-label-item {
        width: 100%;
    }
    
    .progress-label-item.center,
    .progress-label-item.right {
        text-align: left;
    }
    
    .history-item {
        flex-direction: column;
        padding: 1rem;
    }
.lc-active-subscription {
        padding: 1.25rem;
    }
    
    .active-sub-icon {
        width: 56px;
        height: 56px;
    }
    
    .active-sub-icon i {
        font-size: 1.75rem;
    }
    
    .active-sub-title {
        font-size: 1.25rem;
    }
    
    .lc-subscription-card {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .lc-earning-card {
        padding: 1rem;
    }
    
    .earning-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .earning-card-icon i {
        font-size: 1.25rem;
    }
    
    .lc-detail-grid {
        grid-template-columns: 1fr;
    }
.order-card-header {
        padding: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .order-header-right {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .order-status-wrapper {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .order-status-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .order-status-badge i {
        font-size: 0.875rem;
    }
    
    .order-status-detail {
        font-size: 0.6875rem;
    }
    
    .order-price {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .order-price .price-label {
        font-size: 0.75rem;
    }
    
    .order-price .price-value {
        font-size: 1rem;
    }
    
    .lc-order-product-item {
        padding: 1rem;
    }
    
    .product-item-img {
        width: 56px;
        height: 56px;
    }
    
    .order-product-preview {
        width: 48px;
        height: 48px;
    }
    
    .order-icon {
        width: 48px;
        height: 48px;
    }
    
    .order-icon i {
        font-size: 1.5rem;
    }
    
    /* Order Detail Responsive */
    .order-detail-header {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .detail-product-img {
        width: 60px;
        height: 60px;
    }
    
    .detail-product-info h4 {
        font-size: 1rem;
    }
    
    .detail-meta {
        justify-content: center;
        font-size: 0.75rem;
    }
    
    .detail-seller-badge {
        width: 100%;
        justify-content: center;
    }
    
    .content-header {
        padding: 0.875rem 1rem;
    }
    
    .content-header h5 {
        font-size: 0.9375rem;
    }
    
    .btn-copy-content span {
        display: none;
    }
    
    .content-body {
        padding: 1rem;
        font-size: 0.8125rem;
        max-height: 250px;
    }
    
    .detail-actions {
        flex-direction: column;
    }
    
    .detail-action-btn {
        width: 100%;
        min-width: auto;
    }
.fp-cc-head {
        padding: 1rem;
    }
    
    .fp-cc-head .title {
        font-size: 1.125rem;
    }
    
    .fp-cc-body {
        padding: 1rem;
    }
    
    .fp-card-tabs {
        padding: 0 1rem;
    }
    
    .fp-tabs-nav-system {
        gap: 0.75rem;
    }
    
    .fp-tabs-nav-system .link {
        font-size: 0.875rem;
        padding: 0.75rem 0;
    }
    
    .fp-info-item {
        padding: 1rem;
    }
    
    .fp-info-item .content .key {
        font-size: 0.8125rem;
    }
    
    .fp-info-item .content .value {
        font-size: 1.25rem;
    }
    
    .fp-info-item .icon {
        width: 48px;
        height: 48px;
    }
    
    .fp-info-item .icon i {
        font-size: 1.25rem;
    }
    
    .fp-table-border .table thead th,
    .fp-table-border .table tbody td {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .modal-header {
        padding: 1rem 1.25rem;
    }
    
    .modal-body {
        padding: 1.25rem;
    }
.fp-card-ticket .fp-cc-head {
        padding: 1rem;
    }
    
    .ticket-title-section .title {
        font-size: 1.125rem;
    }
    
    .ticket-messages {
        padding: 1rem 0;
    }
.ref-share-buttons {
        grid-template-columns: 1fr;
    }
    
    .ref-code-display {
        flex-direction: column;
    }
    
    .btn-copy {
        width: 100%;
    }
/* Slider */
    .lc-slider-alt-item {
        flex: 0 0 42%;
        min-width: 42%;
    }
    
    /* Footer */
    .lc-footer .footer-bottom {
        flex-direction: column;
    }
    
    /* Navbar */
    .lc-navbar .lc-navbar-dropdown-menu .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    /* Section Head */
    .lc-section-head .btn {
        padding: 5px 14px;
    }
    
    /* Client Sidebar */
    .lc-user-card {
        padding: 1.25rem;
    }
    
    .avatar-icon {
        width: 56px;
        height: 56px;
    }
    
    .avatar-icon i {
        font-size: 1.75rem;
    }
    
    .user-email {
        font-size: 0.875rem;
    }
    
    .user-balance {
        font-size: 0.875rem;
        padding: 0.25rem 0.75rem;
    }
    
    .user-balance i {
        font-size: 0.9375rem;
    }
    
    /* Shop Page */
    .shop-header-bg {
        height: 80px;
    }
    
    .shop-avatar img,
    .shop-avatar-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .shop-name {
        font-size: 1.5rem;
    }
    
    .lc-shop-products-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    /* Blog Page */
    .lc-page-header .page-title {
        font-size: 1.5rem;
    }
    
    .lc-blog-article .article-body {
        padding: 1.25rem;
    }
    
    .lc-blog-article .article-title {
        font-size: 1.25rem;
    }
    
    .lc-blog-article .article-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    /* Streamer App Responsive */
    .lc-steps-progress {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .lc-step-connector {
        display: none;
    }
    
    .lc-step-label {
        display: none;
    }
}

/* ========================================
   Streamer Application Styles
   ======================================== */

/* Multi Step Form */
.lc-streamer-app-form .step {
    display: none;
}

/* Progress Steps */
.lc-steps-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--lc-card-bg);
    border-radius: 12px;
    border: 1px solid var(--lc-border);
}

.lc-step-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.lc-step-item.active {
    opacity: 1;
}

.lc-step-item.completed .lc-step-number {
    background: var(--lc-success);
    border-color: var(--lc-success);
}

.lc-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--lc-bg-tertiary);
    border: 2px solid var(--lc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lc-step-item.active .lc-step-number {
    background: var(--lc-primary);
    border-color: var(--lc-primary);
    color: #fff;
}

.lc-step-label {
    font-weight: 500;
    font-size: 0.9rem;
}

.lc-step-connector {
    width: 60px;
    height: 2px;
    background: var(--lc-border);
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.lc-step-connector.active {
    background: var(--lc-primary);
}

/* Option Cards */
.lc-option-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lc-option-card {
    cursor: pointer;
}

.lc-option-card input {
    display: none;
}

.lc-option-card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--lc-bg-secondary);
    border: 2px solid var(--lc-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.lc-option-card input:checked + .lc-option-card-content {
    border-color: var(--lc-primary);
    background: rgba(var(--lc-primary-rgb), 0.05);
}

.lc-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(var(--lc-primary-rgb), 0.1);
    color: var(--lc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.lc-option-icon.warning {
    background: rgba(var(--lc-warning-rgb), 0.1);
    color: var(--lc-warning);
}

.lc-option-info {
    flex: 1;
}

.lc-option-info strong {
    display: block;
    margin-bottom: 0.25rem;
}

.lc-option-info span {
    font-size: 0.85rem;
}

.lc-option-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--lc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.lc-option-card input:checked + .lc-option-card-content .lc-option-check {
    background: var(--lc-primary);
    border-color: var(--lc-primary);
    color: #fff;
    opacity: 1;
}

/* Form Actions */
.lc-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--lc-border);
}

/* Tabs Navigation */
.lc-tabs-nav {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--lc-bg-secondary);
    border-radius: 12px;
}

.lc-tab-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--lc-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.lc-tab-link:hover {
    color: var(--lc-text);
    background: var(--lc-bg-tertiary);
}

.lc-tab-link.active {
    color: var(--lc-primary);
    background: var(--lc-card-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lc-tab-link i {
    font-size: 1rem;
}

/* Streamer Panel Card Header */
.lc-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--lc-border);
}

.lc-card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: var(--lc-text);
}

.lc-card-title i {
    color: var(--lc-primary);
}

/* Streamer Table */
.lc-table {
    width: 100%;
    border-collapse: collapse;
}

.lc-table thead th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lc-text-secondary);
    background: var(--lc-bg-secondary);
    border-bottom: 1px solid var(--lc-border);
}

.lc-table tbody td {
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--lc-text);
    border-bottom: 1px solid var(--lc-border);
    vertical-align: middle;
}

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

.lc-table tbody tr:hover {
    background: var(--lc-bg-secondary);
}

.donation-message {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

/* Form Section Title */
.lc-form-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--lc-text);
}

.lc-form-section-title i {
    color: var(--lc-primary);
}
