/* =========================================================================
   SAAS FIGMA 1:1 REPLICATION (NATIVE OVERRIDE)
   ========================================================================= */
:root {
    --bg-dark: #07070B;
    --sidebar-bg: #0A0F1A;
    --card-bg: rgba(20, 24, 36, 0.6);
    --border-subtle: rgba(255,255,255,0.06);
    --primary-blue: #2563EB;
    --primary-hover: #1D4ED8;
    --text-white: #FFFFFF;
    --text-gray: #8E95A3;
    --text-dark-gray: #5F6777;
    --radius-pill: 50px;
    --radius-box: 16px;
    
    /* Variable aliases for sepet.php */
    --card-border: rgba(255,255,255,0.06);
    --text-pure: #FFFFFF;
    --text-muted: #8E95A3;
    --text-faint: #5F6777;
    --primary: #2563EB;
    --secondary: #8E95A3;
    --accent-red: #E11D48;
    --transition: all 0.3s ease;
    --bg-base: #07070B;
}

body {
    background-color: var(--bg-dark) !important;
    background-image: radial-gradient(circle at top right, rgba(37,99,235,0.05), transparent 40%),
                      radial-gradient(circle at bottom left, rgba(37,99,235,0.03), transparent 40%) !important;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

/* HIDE LEGACY THEME HEADERS */
header#header, footer#footer, .mobile-navbar, .page-header, .site-header, .footer-section {
    display: none !important;
}

/* --- SAAS APP LAYOUT --- */
.saas-app-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* --- SIDEBAR --- */
.saas-sidebar {
    width: 250px;
    background-color: var(--bg-dark);
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
}

.sidebar-brand {
    padding: 40px 24px 20px 24px;
}
.brand-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}
.brand-subtitle {
    font-size: 11px;
    color: var(--text-dark-gray);
    letter-spacing: 1px;
    font-weight: 600;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    gap: 8px;
    flex: 1;
}

.side-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-gray);
    text-decoration: none !important;
    border-radius: var(--radius-box);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.side-link .s-icon {
    font-size: 18px;
    opacity: 0.7;
}

.side-link:hover {
    color: var(--text-white);
    background: rgba(255,255,255,0.03);
}

.side-link.active {
    background-color: #111A3A;
    color: var(--text-white);
}
.side-link.active .s-icon {
    color: #3B82F6;
    opacity: 1;
}

.sidebar-bottom {
    padding: 20px 16px;
    border-top: 1px solid var(--border-subtle);
}

.api-box {
    background: #0f1524;
    border-radius: var(--radius-box);
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--border-subtle);
}
.api-box h4 { font-size: 14px; color: white; margin: 0 0 6px 0; }
.api-box p { font-size: 11px; color: var(--text-gray); margin: 0 0 12px 0; line-height: 1.4; }
.act-btn-small { background: var(--primary-blue); color: white; border-radius: 6px; padding: 6px 12px; font-size: 11px; font-weight: 600; display: inline-block; text-decoration: none; }

.user-profile-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: var(--radius-box);
    background: rgba(255,255,255,0.02);
    border: 1px solid transparent;
    transition: all 0.2s;
}
.user-profile-box:hover { background: rgba(255,255,255,0.05); border-color: var(--border-subtle); }
.u-avatar img { width: 36px; height: 36px; border-radius: 50%; }
.u-details { display: flex; flex-direction: column; }
.u-name { font-size: 13px; font-weight: 600; color: white; display: flex; align-items: center; gap: 6px; }
.online-dot { width: 6px; height: 6px; background: #22C55E; border-radius: 50%; box-shadow: 0 0 6px #22C55E; }
.u-desc { font-size: 10px; color: var(--text-gray); }

/* --- MAIN CONTENT --- */
.saas-main-content {
    margin-left: 250px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- TOP HEADER --- */
.saas-header {
    height: 80px;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(7, 7, 11, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 900;
}

.logo-box {
    width: 32px; height: 32px;
    background: var(--primary-blue);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-family: 'Outfit'; font-size: 16px;
    margin-right: 12px;
}
.logo-text { font-size: 18px; font-weight: 700; font-family: 'Outfit'; color: white; }

.header-nav { display: flex; gap: 32px; }
.header-nav a {
    color: var(--text-gray);
    font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
    text-decoration: none; transition: color 0.2s;
}
.header-nav a:hover { color: white; }

.header-actions { display: flex; align-items: center; gap: 24px; }
.text-link { color: white; text-decoration: none; font-size: 13px; font-weight: 500; }
.btn-primary-pill {
    background: var(--primary-blue); padding: 10px 24px; border-radius: var(--radius-pill);
    color: white; font-size: 13px; font-weight: 600; text-decoration: none;
    transition: background 0.2s;
}
.btn-primary-pill:hover { background: var(--primary-hover); color: white; }

.mobile-toggle {
    background: transparent; border: none; color: white; font-size: 24px; cursor: pointer;
}

/* --- PAGE CONTENT --- */
.saas-page-content {
    padding: 60px 50px;
    flex: 1;
}

/* HERO SECTION */
.saas-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}
.hero-content { max-width: 600px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.2);
    padding: 6px 14px; border-radius: var(--radius-pill);
    font-size: 11px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 24px;
}
.hero-badge i { font-size: 14px; }
.text-primary { color: #3B82F6 !important; }

.saas-hero h1 {
    font-size: 56px; line-height: 1.1; font-weight: 800; margin-bottom: 20px;
}
.hero-highlight {
    background: linear-gradient(90deg, #3B82F6, #60A5FA);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.saas-hero p { color: var(--text-gray); font-size: 16px; line-height: 1.6; margin-bottom: 36px; max-width: 500px; }

.hero-actions { display: flex; gap: 16px; align-items: center; }
.hero-actions .btn-primary-pill { padding: 14px 32px; font-size: 15px; display: flex; align-items: center; gap: 8px;}
.btn-outline-pill {
    padding: 14px 32px; font-size: 15px; border-radius: var(--radius-pill); font-weight: 600;
    color: white; background: transparent; border: 1px solid var(--border-subtle);
    text-decoration: none; transition: all 0.2s;
}
.btn-outline-pill:hover { background: rgba(255,255,255,0.05); color: white; }

.hero-graphic {
    flex: 1; display: flex; justify-content: flex-end;
}
.graphic-card {
    background: #0D121F; border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px; padding: 24px; display: flex; align-items: center; gap: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4); width: 320px;
}
.g-icon { width: 48px; height: 48px; background: rgba(37,99,235,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #3B82F6;}
.g-text h4 { margin: 0 0 4px 0; font-size: 16px; }
.g-text p { margin: 0; font-size: 13px; color: var(--text-gray); }

/* SECTION TITLES */
.cat-wrapper { margin-bottom: 80px; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-subtitle { font-size: 11px; letter-spacing: 2px; color: #3B82F6; font-weight: 700; display: block; margin-bottom: 8px; }
.section-title { font-size: 32px; font-weight: 800; margin: 0; }

.section-head-left { margin-bottom: 30px; }
.section-head-left .section-title { font-size: 24px; margin-bottom: 8px; }
.section-head-left p { color: var(--text-gray); margin: 0; font-size: 14px; }

/* CATEGORY PILLS */
.cat-pills { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cat-pill {
    background: #0f1524; border: 1px solid var(--border-subtle);
    padding: 8px 24px 8px 8px; border-radius: var(--radius-pill);
    display: flex; align-items: center; gap: 12px; color: white;
    text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.2s;
}
.cat-pill:hover { background: #161D32; border-color: rgba(37,99,235,0.4); color: white; }
.c-icon { width: 32px; height: 32px; background: rgba(37,99,235,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #3B82F6; font-size: 16px; }

.cat-btn-square { background: #3B82F6; width: 48px; height: 48px; border-radius: 16px; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; border: none; cursor: pointer; transition: transform 0.2s; }
.cat-btn-square:hover { transform: scale(1.05); }

/* PRODUCT CARDS NATIVE FIX */
.product--wrapper { display: flex; flex-wrap: wrap; margin: -10px; }
.wrapper--item { width: 25%; padding: 10px; }

.saas-product-card {
    background: #0B101A;
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}
.saas-product-card:hover {
    background: #0E1523;
    border-color: rgba(37,99,235,0.3);
    transform: translateY(-5px);
}

.sp-title { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: white; }
.sp-desc { font-size: 13px; color: var(--text-gray); line-height: 1.5; margin-bottom: 30px; flex: 1; }
.sp-price { font-size: 24px; font-weight: 800; font-family: 'Outfit'; color: #3B82F6; }

.sp-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(37,99,235,0.1);
    color: #3B82F6;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; text-decoration: none; transition: all 0.2s;
}
.saas-product-card:hover .sp-btn { background: #3B82F6; color: white; }

/* PROCESS CIRCLES */
.process-sec { padding: 80px 0; }
.process-row { display: flex; justify-content: space-between; max-width: 900px; margin: 50px auto 0; position: relative; }
.process-step { text-align: center; flex: 1; position: relative; z-index: 2; padding: 0 20px;}
.p-circle {
    width: 64px; height: 64px; border-radius: 50%; background: #161C2C;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit'; font-size: 24px; font-weight: 800; margin: 0 auto 20px;
    border: 1px solid var(--border-subtle);
}
.process-step h4 { font-size: 18px; margin-bottom: 10px; }
.process-step p { font-size: 13px; color: var(--text-gray); line-height: 1.5; }

/* BIG BOX AREA */
.pro-box {
    background: #0B101D; border: 1px solid var(--border-subtle); border-radius: 30px;
    padding: 60px; display: flex; align-items: center; gap: 40px;
    margin-top: 80px; box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.pro-left { flex: 1; }
.pro-left h2 { font-size: 40px; line-height: 1.1; margin-bottom: 40px; }
.pro-feature { display: flex; gap: 20px; margin-bottom: 30px; }
.pf-icon { width: 44px; height: 44px; background: rgba(37,99,235,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #3B82F6; flex-shrink:0;}
.pf-text h4 { font-size: 16px; margin: 0 0 6px; }
.pf-text p { font-size: 13px; color: var(--text-gray); margin: 0; line-height: 1.5; }

.pro-right { flex: 1; display: flex; justify-content: flex-end; }
.pro-card-img {
    background: #070B14; border: 1px solid var(--border-subtle); border-radius: 20px;
    padding: 30px; display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 100%; max-width: 320px; aspect-ratio: 4/3; text-align: center;
}
.pro-card-img h2 { font-size: 48px; color: white; margin: 0; }
.pro-card-img h2 span { color: #3B82F6; }
.pro-card-img p { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: #3B82F6; margin-top: 10px; }

/* RESPONSIVE */
@media (max-width: 991px) {
    .saas-sidebar { transform: translateX(-100%); }
    .saas-main-content { margin-left: 0; }
    .saas-header { padding: 0 20px; }
    .saas-page-content { padding: 40px 20px; }
    .saas-hero { flex-direction: column; text-align: center; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .hero-graphic { margin-top: 40px; justify-content: center;}
    .wrapper--item { width: 100%; }
    .pro-box { flex-direction: column; padding: 40px 20px; text-align: center;}
    .pro-feature { text-align: left; }
    .header-actions { display: none; }
}


/* =========================================================================
   GLOBAL LIGHT-MODE OVERRIDES (FOR INNER PAGES: CART, PRODUCTS, ETC)
   ========================================================================= */
.card {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px transparent !important;
    color: var(--text-white) !important;
}
.card-header {
    background-color: rgba(255,255,255,0.02) !important;
    border-bottom: 1px solid var(--border-subtle) !important;
    color: var(--text-white) !important;
    border-radius: 20px 20px 0 0 !important;
}
.card-footer {
    background-color: rgba(255,255,255,0.02) !important;
    border-top: 1px solid var(--border-subtle) !important;
    color: var(--text-white) !important;
}
.table {
    color: var(--text-white) !important;
}
.table th, .table td {
    border-color: var(--border-subtle) !important;
    vertical-align: middle !important;
}
.table thead th {
    border-bottom: 2px solid var(--border-subtle) !important;
    background: rgba(255,255,255,0.02) !important;
    color: var(--text-gray) !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255,255,255,0.01) !important;
}
.form-control, .form-select {
    background-color: #0E1324 !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-size: 14px !important;
}
.form-control:focus, .form-select:focus {
    background-color: #121A30 !important;
    border-color: var(--primary-blue) !important;
    color: white !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15) !important;
}
.input-group-text {
    background-color: rgba(255,255,255,0.03) !important;
    border: 1px solid var(--border-subtle) !important;
    color: var(--text-gray) !important;
}
.btn {
    border-radius: 12px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
}
.btn-primary {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 4px 14px rgba(37,99,235,0.3) !important;
}
.btn-primary:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}
.btn-outline-primary {
    color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}
.btn-outline-primary:hover {
    background-color: var(--primary-blue) !important;
    color: white !important;
}
.btn-success {
    background-color: #10B981 !important;
    border-color: #10B981 !important;
}
.btn-danger {
    background-color: #EF4444 !important;
    border-color: #EF4444 !important;
}
.btn-warning {
    background-color: #F59E0B !important;
    border-color: #F59E0B !important;
    color: white !important;
}

.btn-primary-glow {
    background-color: var(--primary-blue) !important;
    border: 1px solid var(--primary-blue) !important;
    color: white !important;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(37,99,235,0.3) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}
.btn-primary-glow:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.5) !important;
}
.bg-light, .bg-white {
    background-color: var(--card-bg) !important;
}
.text-dark {
    color: white !important;
}
.text-muted {
    color: var(--text-gray) !important;
}
hr {
    border-color: var(--border-subtle) !important;
}
.alert-info {
    background-color: rgba(59,130,246,0.1) !important;
    border-color: rgba(59,130,246,0.2) !important;
    color: #60A5FA !important;
}
.alert-success {
    background-color: rgba(16,185,129,0.1) !important;
    border-color: rgba(16,185,129,0.2) !important;
    color: #34D399 !important;
}
.alert-warning {
    background-color: rgba(245,158,11,0.1) !important;
    border-color: rgba(245,158,11,0.2) !important;
    color: #FBBF24 !important;
}

/* MODAL OVERRIDES */
.modal-content {
    background-color: #0A0F1A !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 24px !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6) !important;
    color: white !important;
}
.modal-header {
    border-bottom: 1px solid var(--border-subtle) !important;
    padding: 24px !important;
}
.modal-footer {
    border-top: 1px solid var(--border-subtle) !important;
}
.close {
    color: white !important;
    text-shadow: none !important;
    opacity: 0.7 !important;
}
.close:hover {
    color: white !important;
    opacity: 1 !important;
}

/* SIDEBAR FIXES FOR MOBILE */
.saas-sidebar.active {
    transform: translateX(0);
}
@media (max-width: 991px) {
    .saas-sidebar {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: 280px;
        box-shadow: 20px 0 50px rgba(0,0,0,0.5);
    }
}

/* FOOTER STYLES */
.saas-footer {
    background: #05060A;
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 0 0;
    margin-top: 80px;
}
.f-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 20px; }
.f-logo-box { width: 36px; height: 36px; background: var(--primary-blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: 'Outfit'; color: white; font-size: 18px; }
.f-brand span { font-size: 20px; font-weight: 700; font-family: 'Outfit'; color: white; }
.f-desc { color: var(--text-gray); font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
.f-socials { display: flex; gap: 12px; }
.f-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: var(--text-white); font-size: 16px; transition: all 0.2s; text-decoration: none; }
.f-socials a:hover { background: var(--primary-blue); color: white; transform: translateY(-3px); }

.f-title { color: white; font-size: 16px; font-weight: 700; margin-bottom: 24px; font-family: 'Outfit'; }
.f-links { list-style: none; padding: 0; margin: 0; }
.f-links li { margin-bottom: 14px; }
.f-links a { color: var(--text-gray); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
.f-links a:hover { color: var(--primary-blue); }

.f-cta-box { background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); border-radius: 20px; padding: 30px; }

.footer-company-bar { border-top: 1px solid rgba(255,255,255,0.05); padding: 14px 0; background: rgba(0,0,0,0.2); }
.footer-company-bar span { display: inline-flex; align-items: center; gap: 4px; color: rgba(255,255,255,0.3); font-size: 11px; }
.footer-company-bar i { font-size: 12px; color: rgba(255,255,255,0.2); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 24px 0; color: var(--text-gray); font-size: 12px; }
.f-bottom-links { display: flex; gap: 20px; }
.f-bottom-links a { color: var(--text-gray); text-decoration: none; transition: color 0.2s; }
.f-bottom-links a:hover { color: white; }
@media (max-width: 767px) {
    .f-bottom-links { margin-top: 15px; flex-wrap: wrap; }
}

/* FAQ STYLES FOR HOMEPAGE */
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); border-radius: 16px; margin-bottom: 16px; overflow: hidden; }
.faq-question { padding: 24px; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 16px; color: white; cursor: pointer; user-select: none; }
.faq-question i { font-size: 20px; color: var(--primary-blue); transition: transform 0.3s; }
.faq-answer { padding: 0 24px 24px 24px; color: var(--text-gray); font-size: 14px; line-height: 1.6; display: none; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-answer { display: block; }

/* =========================================================================
   OVERRIDING ENCRYPTED LEGACY (IONCUBE) TEMPLATES
   ========================================================================= */
/* Hide the old top bar and main header completely */
#header__top,
#header,
header.site-header {
    display: none !important;
}

/* Hide the old footer while keeping ours */
footer:not(.saas-footer):not(.panel-dark-footer),
.footer-area {
    display: none !important;
}

/* Ensure the body margin/padding resets since the old header is gone */
body {
    padding-top: 0 !important;
}

/* =============================================
   HESAPEVI - LIVE /SEPET PAGE EXACT DOM FIX
   ============================================= */

/* Main Headings & Aggressive Text Normalization */
.basket__detail *,
.order-info-inner *,
.cart-details-main-block *,
.detail__top span,
.detail__top h6,
.detail__top h6 strong,
.basket__container {
    color: #F1F5F9 !important;
}

/* Specific highlight for Tutar/Fiyat column headers */
.cart-product-title .product-block h3,
.cart-product-title .price-block h3,
.cart-product-title h3 {
    color: #FACC15 !important;
    font-weight: 600 !important;
}

/* Product Rows Container */
.cart-product-body,
.cart-item {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
}

/* Product Name & Details */
.cart-product-body .product-block a,
.cart-product-body .product-block h3,
.cart-product-body .product-block p,
.cart-product-body p,
.cart-product-body a,
.cart-product-body h3,
.cart-product-body span {
    color: #F8FAFC !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

/* Quantity Control & Price */
.quantity-block .amount-dec-btn,
.quantity-block .amount-inc-btn {
    border: 1px solid rgba(255,255,255,0.2) !important;
    background: rgba(255,255,255,0.05) !important;
    color: #F8FAFC !important;
}
.quantity-block .form-control {
    background: transparent !important;
    color: #F8FAFC !important;
    border-top: 1px solid rgba(255,255,255,0.2) !important;
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
}
.price-block, 
.price-block span, 
.price-block strong {
    color: #F8FAFC !important;
}

/* Order Summary Box (Ücret Bilgisi) */
.order-info .order-info-inner {
    background: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 16px !important;
    padding: 20px !important;
}
.inner-top p,
.inner-top span,
.order-info-inner .inner-top h4,
.order-info-inner span {
    color: #F1F5F9 !important;
    font-weight: 600 !important;
}
.order-info-inner ul li .txt,
.order-info-inner span.txt {
    color: #E2E8F0 !important;
}
.order-info-inner ul li .order-new-price,
.order-info-inner span.order-new-price {
    color: #10B981 !important; /* Green price */
    font-weight: bold !important;
}

/* Checkout Buttons & Inputs */
.order-info-inner input {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: #FFF !important;
}
.inner-bottom button:disabled, 
.inner-bottom button[disabled], 
.order-info-inner button:disabled {
    background: rgba(255,255,255,0.05) !important;
    color: #94A3B8 !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    cursor: not-allowed !important;
}

.continue-shop-btn a.btn,
.order-info .btn[type="submit"]:not(:disabled),
.cart-checkout-btn,
.basket__container .btn:not(:disabled) {
    background: linear-gradient(135deg, #2563EB, #1d4ed8) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
}

/* Trash Icon in Cart */
.cart-product-body i.ri-delete-bin-line,
.cart-product-body a.text-danger i,
.cart-product-body a i[class*="delete"] {
    color: #ef4444 !important; /* Red trash icon */
}

/* =============================================
   AGGRESSIVE CART WHITE BOX FIX
   ============================================= */
section#basket,
section#basket .container,
.basket__container,
.form-left,
.basket__detail,
.detail__top,
.detail__content,
.cart-details-main-block,
.product-cart-all-acrd-items {
    background: transparent !important;
    background-color: transparent !important;
}

/* =============================================
   MISSING CART STATE FIXES (Empty Cart & Alerts)
   ============================================= */
/* Top Alert Banner */
#alert__top .alert__container,
#alert__top .text,
#alert__top .icon,
#alert__top a {
    background-color: transparent !important;
    color: #F8FAFC !important;
}
#alert__top .alert__container {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 12px !important;
    padding: 15px !important;
}

/* Cart Header Row (Fixing the bright white box) */
.cart-product-title {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 12px 12px 0 0 !important;
}

/* Empty Cart State Text */
.cart-product-body i,
.cart-product-body p,
.cart-product-body .second {
    color: #E2E8F0 !important;
}
.cart-product-body {
    border-radius: 0 0 12px 12px !important;
    padding: 20px !important;
    text-align: center;
}

/* Fix "Şimdi Satın Al" Mustard Yellow Button Disabling */
.inner-bottom button[disabled] {
    background: rgba(255,255,255,0.05) !important;
    color: rgba(255,255,255,0.3) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

/* =============================================
   HESAPEVI - PANEL PROFILE DARK THEME FIX (VERIFIED CLASSES)
   ============================================= */

/* Right Side Headers (e.g., Kullanıcı Bilgilerim, Bakiye İşlemleri) */
.form__wrapper > span,
.user-info-wrapper span {
    color: #F1F5F9 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    display: inline-block !important;
    margin-bottom: 20px !important;
}

/* Sidebar Top Headers (Profilim, Menü) */
.profile .top span, 
.menu .top span,
.profile .top i,
.menu .top i {
    color: #F1F5F9 !important;
    font-weight: 600 !important;
}

/* Sidebar User Name & Balance */
.profile .name, 
.profile .name small {
    color: #F1F5F9 !important;
}

/* Sidebar List Links (Siparişlerim, Bakiye Yükle, vb.) */
.menu .body ul li a {
    color: #94A3B8 !important;
    font-weight: 500 !important;
    transition: all 0.2s !important;
}
.menu .body ul li a i {
    color: #64748B !important;
}
.menu .body ul li.active a,
.menu .body ul li a:hover {
    color: #FACC15 !important;
}
.menu .body ul li.active a i,
.menu .body ul li a:hover i {
    color: #FACC15 !important;
}

/* Remove stray background colors from wrappers */
.user__info-wrapper,
.form__wrapper,
.profile,
.menu {
    background: transparent !important;
}

.form__wrapper label,
.form-group label {
    color: #94A3B8 !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
}

/* =============================================
   LEGACY PRODUCT CARD FIXES (Category & Target)
   ============================================= */
.product--content {
    background: #0f1524 !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    border-radius: 16px !important;
    padding: 16px !important;
}

/* Headers & Links */
.product--content .product--title a {
    color: #F8FAFC !important;
    font-weight: 700 !important;
    font-size: 15px !important;
}

/* Category Label */
.product--content .product--cat {
    color: #64748B !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 8px !important;
}

/* Description Text */
.product--content .product--desc {
    color: #94A3B8 !important;
    line-height: 1.5 !important;
    font-size: 13px !important;
    margin-bottom: 12px !important;
}

/* Price Box */
.product--content .price-container {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 10px !important;
}
.product--content .new-price {
    background: rgba(250, 204, 21, 0.1) !important;
    color: #FACC15 !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(250, 204, 21, 0.2) !important;
    display: inline-flex !important;
    align-items: center !important;
    font-weight: 800 !important;
}
.product--content .new-price span {
    background: transparent !important;
    color: #FACC15 !important;
    margin-left: 4px !important;
    padding: 0 !important;
    box-shadow: none !important; /* Eliminate white inner box */
}
.product--content .old-price {
    color: #64748B !important;
    display: none !important; /* usually invisible or irrelevant */
}

/* Buy Button Icon */
.product--content .buy-btn-icon {
    background: rgba(59,130,246,0.1) !important;
    border-radius: 12px !important;
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.product--content .buy-btn-icon i {
    color: #3B82F6 !important;
}
.product--content .buy-btn-icon:hover {
    background: rgba(59,130,246,0.2) !important;
}

/* =========================================================================
   LIGHT MODE THEME (html[data-theme=light])
   ========================================================================= */
html[data-theme=light] {
    --bg-dark: #F1F5F9;
    --sidebar-bg: #FFFFFF;
    --card-bg: rgba(255,255,255,0.8);
    --border-subtle: rgba(0,0,0,0.08);
    --primary-blue: #2563EB;
    --primary-hover: #1D4ED8;
    --text-white: #0F172A;
    --text-gray: #475569;
    --text-dark-gray: #64748B;
    --card-border: rgba(0,0,0,0.08);
    --text-pure: #0F172A;
    --text-muted: #64748B;
    --text-faint: #94A3B8;
    --primary: #2563EB;
    --accent-red: #E11D48;
    --bg-base: #F1F5F9;
}

html[data-theme=light] body {
    background-color: #F1F5F9 !important;
    background-image: radial-gradient(circle at top right, rgba(37,99,235,0.04), transparent 40%),
                      radial-gradient(circle at bottom left, rgba(37,99,235,0.02), transparent 40%) !important;
    color: #0F172A !important;
}

html[data-theme=light] .saas-sidebar {
    background-color: #FFFFFF !important;
    border-right: 1px solid rgba(0,0,0,0.08) !important;
}

html[data-theme=light] .saas-header {
    background: rgba(255,255,255,0.85) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}

html[data-theme=light] .saas-product-card,
html[data-theme=light] .cart-box,
html[data-theme=light] .checkout-box,
html[data-theme=light] .summary-box,
html[data-theme=light] .cart-panel,
html[data-theme=light] .faq-item {
    background: #FFFFFF !important;
    border-color: rgba(0,0,0,0.08) !important;
}

html[data-theme=light] .saas-footer {
    background: #E2E8F0 !important;
    border-top: 1px solid rgba(0,0,0,0.08) !important;
}

html[data-theme=light] .cat-pill,
html[data-theme=light] .api-box,
html[data-theme=light] .graphic-card,
html[data-theme=light] .pro-box {
    background: #FFFFFF !important;
    border-color: rgba(0,0,0,0.08) !important;
}

html[data-theme=light] .side-link:hover {
    background: rgba(0,0,0,0.04) !important;
}
html[data-theme=light] .side-link.active {
    background: #EFF6FF !important;
    color: #1D4ED8 !important;
}

html[data-theme=light] .sp-title,
html[data-theme=light] .product-title,
html[data-theme=light] h1, html[data-theme=light] h2,
html[data-theme=light] h3, html[data-theme=light] h4 {
    color: #0F172A !important;
}

html[data-theme=light] .cart-header-btn,
html[data-theme=light] .mobile-toggle {
    background: rgba(0,0,0,0.05) !important;
    border-color: rgba(0,0,0,0.1) !important;
    color: #0F172A !important;
}

html[data-theme=light] .f-links a,
html[data-theme=light] .f-title,
html[data-theme=light] .f-desc,
html[data-theme=light] .header-nav a,
html[data-theme=light] .text-link {
    color: #475569 !important;
}
html[data-theme=light] .header-nav a:hover { color: #0F172A !important; }

html[data-theme=light] .c-control {
    background: #F8FAFC !important;
    border-color: rgba(0,0,0,0.12) !important;
    color: #0F172A !important;
}

/* Quantity buttons & inputs */
html[data-theme=light] .qty-input,
html[data-theme=light] .qty-btn {
    color: #0F172A !important;
}
html[data-theme=light] .qty-btn-group {
    background: #F8FAFC !important;
    border-color: rgba(0,0,0,0.1) !important;
}
html[data-theme=light] .qty-btn:hover { background: rgba(0,0,0,0.05) !important; }

html[data-theme=light] .cart-item { border-color: rgba(0,0,0,0.06) !important; }
html[data-theme=light] .cart-item:hover { background: rgba(0,0,0,0.015) !important; }

/* Theme toggle button light state */
html[data-theme=light] #themeToggleBtn {
    color: #F59E0B !important;
    border-color: rgba(245,158,11,0.3) !important;
    background: rgba(245,158,11,0.08) !important;
}

/* =========================================================================
   LIGHT MODE - EXTRA HARDCODED TEXT FIXES
   ========================================================================= */

/* Buttons with white text that become invisible on light bg */
html[data-theme=light] .btn-outline-pill {
    color: #1E3A8A !important;
    border-color: rgba(37,99,235,0.4) !important;
    background: rgba(37,99,235,0.05) !important;
}
html[data-theme=light] .btn-outline-pill:hover {
    background: rgba(37,99,235,0.1) !important;
    color: #1E3A8A !important;
}

/* Hero section */
html[data-theme=light] .saas-hero p,
html[data-theme=light] .hero-content p {
    color: #475569 !important;
}

/* Process steps */
html[data-theme=light] .process-step p,
html[data-theme=light] .process-sec p { color: #475569 !important; }
html[data-theme=light] .p-circle {
    background: #E2E8F0 !important;
    color: #1E3A8A !important;
    border-color: rgba(0,0,0,0.1) !important;
}
html[data-theme=light] .process-step h4 { color: #0F172A !important; }

/* Feature icons inside product desc */
html[data-theme=light] .pf-text p,
html[data-theme=light] .g-text p { color: #64748B !important; }
html[data-theme=light] .g-text h4 { color: #0F172A !important; }

/* FAQ */
html[data-theme=light] .faq-question { color: #0F172A !important; }
html[data-theme=light] .faq-answer { color: #475569 !important; }

/* Section subtitles and body text */
html[data-theme=light] .section-subtitle { color: #2563EB !important; }
html[data-theme=light] .section-title { color: #0F172A !important; }
html[data-theme=light] .section-head-left p { color: #64748B !important; }

/* Category pills */
html[data-theme=light] .cat-pill { 
    background: #FFFFFF !important; 
    color: #0F172A !important; 
    border-color: rgba(0,0,0,0.1) !important;
}
html[data-theme=light] .cat-pill:hover { background: #EFF6FF !important; color: #1E3A8A !important; }

/* Product card text */
html[data-theme=light] .sp-title { color: #0F172A !important; }
html[data-theme=light] .sp-desc { color: #64748B !important; }
html[data-theme=light] .saas-product-card { background: #FFFFFF !important; }
html[data-theme=light] .saas-product-card:hover { background: #F8FAFC !important; }

/* Pro box big area */
html[data-theme=light] .pro-box { background: #FFFFFF !important; }
html[data-theme=light] .pro-left h2,
html[data-theme=light] .pf-text h4 { color: #0F172A !important; }
html[data-theme=light] .pro-card-img { background: #F1F5F9 !important; }
html[data-theme=light] .pro-card-img h2 { color: #0F172A !important; }

/* Footer text */
html[data-theme=light] .f-brand span,
html[data-theme=light] .f-title { color: #0F172A !important; }
html[data-theme=light] .footer-bottom,
html[data-theme=light] .footer-company-bar span { color: #64748B !important; }

/* Sidebar links */
html[data-theme=light] .side-link { color: #475569 !important; }
html[data-theme=light] .side-link:hover { color: #0F172A !important; }
html[data-theme=light] .brand-title { color: #0F172A !important; }
html[data-theme=light] .brand-subtitle { color: #64748B !important; }
html[data-theme=light] .u-name { color: #0F172A !important; }

/* User-facing text blocks with !important white */
html[data-theme=light] * { --text-white: #0F172A; }

/* =========================================================================
   LIGHT MODE - SIDEBAR CATEGORY INLINE COLOR FIXES
   ========================================================================= */
html[data-theme=light] .side-cat-link span,
html[data-theme=light] .saas-sidebar .sidebar-nav a span,
html[data-theme=light] .saas-sidebar .sidebar-nav a {
    color: #334155 !important;
}
html[data-theme=light] .saas-sidebar .s-icon-sm,
html[data-theme=light] .saas-sidebar .s-icon-sm i {
    color: #2563EB !important;
    background: rgba(37,99,235,0.08) !important;
}
html[data-theme=light] .sidebar-section-title {
    color: #94A3B8 !important;
}
html[data-theme=light] .saas-sidebar {
    background-color: #FFFFFF !important;
    border-right: 1px solid rgba(0,0,0,0.08) !important;
}
html[data-theme=light] .api-box {
    background: #F1F5F9 !important;
}
html[data-theme=light] .api-box h4 { color: #0F172A !important; }
html[data-theme=light] .api-box p { color: #64748B !important; }
html[data-theme=light] .sidebar-bottom {
    border-top-color: rgba(0,0,0,0.07) !important;
}
html[data-theme=light] .user-profile-box {
    background: rgba(0,0,0,0.03) !important;
}
html[data-theme=light] .online-dot { box-shadow: 0 0 6px #22C55E; }

/* =========================================================================
   LIGHT MODE - PANEL (HESABIM) OVERRIDES
   ========================================================================= */
html[data-theme=light] .form__wrapper > span,
html[data-theme=light] .user-info-wrapper span {
    color: #0F172A !important;
}
html[data-theme=light] .profile .top span, 
html[data-theme=light] .menu .top span,
html[data-theme=light] .profile .top i,
html[data-theme=light] .menu .top i {
    color: #0F172A !important;
}
html[data-theme=light] .profile .name, 
html[data-theme=light] .profile .name small {
    color: #0F172A !important;
}
html[data-theme=light] .menu .body ul li a {
    color: #475569 !important;
}
html[data-theme=light] .menu .body ul li a i {
    color: #64748B !important;
}
html[data-theme=light] .menu .body ul li.active a,
html[data-theme=light] .menu .body ul li a:hover {
    color: #2563EB !important;
}
html[data-theme=light] .menu .body ul li.active a i,
html[data-theme=light] .menu .body ul li a:hover i {
    color: #2563EB !important;
}
html[data-theme=light] .form__wrapper label,
html[data-theme=light] .form-group label {
    color: #475569 !important;
}
html[data-theme=light] .form-control,
html[data-theme=light] .form-select,
html[data-theme=light] .input-group-text,
html[data-theme=light] textarea,
html[data-theme=light] input {
    background-color: #FFFFFF !important;
    border-color: rgba(0,0,0,0.1) !important;
    color: #0F172A !important;
}
html[data-theme=light] .form-control:focus,
html[data-theme=light] .form-select:focus {
    background-color: #F8FAFC !important;
    border-color: #2563EB !important;
    color: #0F172A !important;
}

/* =========================================================================
   LIGHT MODE - LOGIN / REGISTER PAGES OVERRIDES
   ========================================================================= */
html[data-theme=light] section#login, 
html[data-theme=light] section#register, 
html[data-theme=light] section#resetpassword {
    background: #F1F5F9 !important;
}

html[data-theme=light] .login__body, 
html[data-theme=light] .register__body {
    background: #FFFFFF !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05) !important;
    color: #0F172A !important;
}

html[data-theme=light] .login__top span, 
html[data-theme=light] .register__top span {
    color: #2563EB !important;
}

html[data-theme=light] .login__top h5, 
html[data-theme=light] .register__top h5 {
    color: #0F172A !important;
}

html[data-theme=light] section#login .form-group label, 
html[data-theme=light] section#register .form-group label, 
html[data-theme=light] .control-label, 
html[data-theme=light] .form-label {
    color: #475569 !important;
}

html[data-theme=light] section#login .form-control, 
html[data-theme=light] section#register .form-control {
    background: #F8FAFC !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    color: #0F172A !important;
}

html[data-theme=light] section#login .form-control:focus, 
html[data-theme=light] section#register .form-control:focus {
    background: #FFFFFF !important;
    border-color: #2563EB !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15) !important;
    color: #0F172A !important;
}

html[data-theme=light] section#login .form-control::placeholder, 
html[data-theme=light] section#register .form-control::placeholder {
    color: #94A3B8 !important;
}

html[data-theme=light] .login__bottom, 
html[data-theme=light] .register__bottom {
    color: #475569 !important;
}

html[data-theme=light] .login__bottom a, 
html[data-theme=light] .register__bottom a {
    color: #2563EB !important;
}

/* =========================================================================
   LIGHT MODE: BANK ACCOUNTS PAGE (banka-hesaplari.php)
   ========================================================================= */
html[data-theme=light] section#bank h1 {
    color: #0F172A !important;
}
html[data-theme=light] section#bank > .container > .row:first-child p {
    color: #475569 !important;
}

/* Alert box */
html[data-theme=light] .bank-header-alert {
    background: rgba(37, 99, 235, 0.06) !important;
    border-color: rgba(37, 99, 235, 0.2) !important;
    color: #1E3A5F !important;
}
html[data-theme=light] .bank-header-alert p {
    color: #334155 !important;
}

/* Bank card - override dark gradient */
html[data-theme=light] .bank-card {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07) !important;
    color: #0F172A !important;
}
html[data-theme=light] .bank-card * {
    color: #0F172A !important;
}
html[data-theme=light] .bank-card:hover {
    border-color: rgba(37,99,235,0.35) !important;
    box-shadow: 0 8px 32px rgba(37,99,235,0.12) !important;
}
html[data-theme=light] .bank-card-header {
    border-bottom-color: #E2E8F0 !important;
}

/* Logo inverted on dark – revert for light */
html[data-theme=light] .bank-card-logo img {
    filter: none !important;
    opacity: 1 !important;
}
html[data-theme=light] .bank-card-logo strong {
    color: #0F172A !important;
}

/* "Ödeme Bildir" button */
html[data-theme=light] .bank-card-action a {
    background: rgba(37,99,235,0.08) !important;
    color: #2563EB !important;
    border-color: rgba(37,99,235,0.2) !important;
}
html[data-theme=light] .bank-card-action a:hover {
    background: #2563EB !important;
    color: #fff !important;
}

/* Detail items */
html[data-theme=light] .bank-detail-item {
    background: #F8FAFC !important;
    border-color: #E2E8F0 !important;
}
html[data-theme=light] .bank-detail-label {
    color: #64748B !important;
}
html[data-theme=light] .bank-detail-val {
    color: #0F172A !important;
}

/* IBAN box */
html[data-theme=light] .bank-iban {
    background: #F1F5F9 !important;
    border-color: #CBD5E1 !important;
}
html[data-theme=light] .bank-iban .bank-detail-val {
    color: #1D4ED8 !important;
}

/* Decorative radial bg blob - hide on light */
html[data-theme=light] section#bank + div,
html[data-theme=light] main > div[style*="radial-gradient"] {
    display: none !important;
}

/* Company Info Footer Section - Light Mode Fixes */
.f-company-info strong {
    color: var(--text-pure) !important;
}
.f-company-info span {
    color: var(--text-pure) !important;
}

html[data-theme=light] .f-company-info {
    background: rgba(0,0,0,0.03) !important;
    border-color: rgba(0,0,0,0.08) !important;
}

html[data-theme=light] .f-company-info strong,
html[data-theme=light] .f-company-info span {
    color: #0F172A !important;
}

html[data-theme=light] .f-company-info div {
    color: #475569 !important;
}



/* Kurumsal footer links - always black */
/* Super Nuclear Footer Link Visibility Fix */
div[class*="footer"] a,
footer a,
.hv-footer-div a,
.hv-f-col a,
.hv-f-bottom-links a,
.kurumsal-black-links a,
.kurumsal-black-links {
    color: #FFFFFF !important;
    opacity: 1 !important;
    visibility: visible !important;
}
html[data-theme=light] div[class*="footer"] a,
html[data-theme=light] footer a,
html[data-theme=light] .hv-footer-div a,
html[data-theme=light] .hv-f-col a,
html[data-theme=light] .hv-f-bottom-links a,
html[data-theme=light] .kurumsal-black-links a,
html[data-theme=light] .kurumsal-black-links {
    color: #000000 !important;
}





/* Product live indicators */
.product-live-indicators { display:flex; gap:8px; flex-wrap:wrap; margin:8px 0 12px 0; }
.indicator-badge { display:inline-flex; align-items:center; gap:5px; padding:4px 10px; border-radius:20px; font-size:11.5px; font-weight:600; }
.indicator-viewers { background:rgba(251,191,36,0.12); border:1px solid rgba(251,191,36,0.3); color:#fbbf24; }
.indicator-stock { background:rgba(34,197,94,0.1); border:1px solid rgba(34,197,94,0.25); color:#22c55e; }
.indicator-stock.low { background:rgba(239,68,68,0.1); border:1px solid rgba(239,68,68,0.25); color:#ef4444; }
.blink-dot { width:6px; height:6px; border-radius:50%; background:currentColor; animation:blink-d 1.2s infinite; display:inline-block; flex-shrink:0; }
@keyframes blink-d { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* Light Mode Contrasts for Indicators */
html[data-theme=light] .indicator-viewers {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #b45309;
}
html[data-theme=light] .indicator-stock {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.4);
    color: #15803d;
}
html[data-theme=light] .indicator-stock.low {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.4);
    color: #b91c1c;
}

/* Fake Order Popup */
.hv-fake-order-popup {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 320px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 10001;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform: translateX(-120%);
    opacity: 0;
}
.hv-fake-order-popup.show {
    transform: translateX(0);
    opacity: 1;
}
.hv-fop-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary, #3B82F6), #1D4ED8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}
.hv-fop-content {
    flex: 1;
    min-width: 0;
}
.hv-fop-title {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hv-fop-desc {
    display: block;
    color: #94A3B8;
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hv-fop-time {
    display: block;
    color: var(--primary, #3B82F6);
    font-size: 10px;
    font-weight: 700;
    margin-top: 4px;
    text-transform: uppercase;
}
.hv-fop-close {
    position: absolute;
    top: 10px;
    right: 12px;
    color: #64748B;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s;
}
.hv-fop-close:hover { color: #fff; }

@media (max-width: 768px) {
    .hv-fake-order-popup {
        left: 15px;
        right: 15px;
        width: auto;
        bottom: 85px;
    }
}

html[data-theme=light] .hv-fake-order-popup {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
html[data-theme=light] .hv-fop-title { color: #0F172A; }
html[data-theme=light] .hv-fop-desc { color: #475569; }


/* Mobile Cart & Checkout Layout Fixes */
@media (max-width: 991px) {
    .saas-main-content {
        margin-left: 0 !important;
        padding-left: 0 !important;
        width: 100% !important;
    }
    .saas-page-content {
        padding: 15px 10px !important;
        margin-left: 0 !important;
    }
    .saas-header {
        padding: 0 10px !important;
    }
    .cart-page-wrapper {
        padding: 20px 0 !important;
    }
    .cart-layout {
        gap: 15px !important;
    }
}

@media (max-width: 768px) {
    .cart-item {
        padding: 12px !important;
    }
    
    .cart-info-row {
        flex-wrap: wrap !important;
        gap: 8px;
    }
    
    .summary-box {
        padding: 15px !important;
    }
    
    /* Ensure product details don't get squashed */
    .cart-item-details {
        min-width: 120px;
    }
    
    /* Fix price alignment in stacked layout */
    .cart-info-row span:last-child {
        text-align: right;
        flex: 1;
    }
}




/* NUCLEAR_LINK_COLOR_V2 */
.f-bottom-links a, .hv-f-bottom-links a, footer a, .saas-footer a { color: #FFFFFF !important; text-decoration: none !important; opacity: 1 !important; visibility: visible !important; }
html[data-theme='light'] .f-bottom-links a, html[data-theme='light'] .hv-f-bottom-links a, html[data-theme='light'] footer a, html[data-theme='light'] .saas-footer a { color: #000000 !important; }
