/* ==========================================================================
   EKOKEN Web Application stylesheet (cPanel Compatible, No Tailwind Required)
   ========================================================================== */

/* 1. Global Reset & Theme Tokens */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

:root {
    /* Color Schemes - Light Mode (Default) */
    --primary: #16a34a;       /* Vibrant Green */
    --primary-hover: #15803d;
    --primary-light: rgba(22, 163, 74, 0.1);
    
    --bg-page: #f4f6f9;       /* Light Gray background */
    --bg-device: #ffffff;
    --bg-card: #ffffff;
    --bg-input: #f1f5f9;
    --bg-border: #e2e8f0;
    --bg-pill: #e2e8f0;
    --bg-nav: #ffffff;
    
    --text-main: #0f172a;     /* Deep Slate */
    --text-muted: #64748b;    /* Slate Gray */
    --text-on-accent: #ffffff;
    
    --danger: #ef4444;
    --danger-light: rgba(239, 68, 68, 0.1);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --border-radius-sm: 8px;
    --border-radius-md: 14px;
    --border-radius-lg: 20px;
    
    /* Device Frame Simulation Sizes */
    --phone-width: 375px;
    --phone-height: 812px;
}

/* Dark Mode Variables Override */
.theme-dark {
    --bg-page: #030712;       /* Very Deep Blue-Black */
    --bg-device: #0b0f19;     /* Deep Dark Gray-Blue */
    --bg-card: #111827;       /* Charcoal */
    --bg-input: #1f2937;      /* Dark Slate */
    --bg-border: #374151;     /* Darker Borders */
    --bg-pill: #1f2937;
    --bg-nav: #0b0f19;
    
    --text-main: #f3f4f6;     /* White/Light Gray */
    --text-muted: #9ca3af;    /* Cool Muted Gray */
    --text-on-accent: #ffffff;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
}

html, body {
    overflow-x: hidden;
}
body {
    background-color: var(--bg-page);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* 2. Responsive App Container (Centered on Desktop, Native Full-screen on Mobile Webview) */
.app-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background-color: var(--bg-device);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    overflow: hidden;
    transition: background-color 0.3s ease;
}



/* Viewport for internal screens */
.app-screen-viewport {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Individual screen properties */
.app-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease-in-out;
    transform: scale(0.96);
    background-color: var(--bg-page);
    padding-bottom: 58px; /* Space for Bottom Nav Bar */
    overflow: hidden;
}
.app-screen.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.screen-scrollable {
    flex: 1;
    overflow-y: auto;
    padding: 0 16px 20px 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.screen-scrollable::-webkit-scrollbar {
    width: 4px;
}
.screen-scrollable::-webkit-scrollbar-thumb {
    background-color: var(--bg-border);
    border-radius: 2px;
}

/* 3. Header Customization */
.app-header {
    height: 56px;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-device);
    border-bottom: 1px solid var(--bg-border);
    z-index: 90;
    flex-shrink: 0;
    transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
}
.header-centered {
    justify-content: center;
}
.header-centered h2 {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.2px;
}
.flex-between {
    justify-content: space-between !important;
}

.brand-logo {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    display: block;
    line-height: 1.1;
}
.brand-sub {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background-color: var(--bg-input);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s, transform 0.1s;
}
.icon-btn:active {
    transform: scale(0.92);
}
.icon-btn svg {
    width: 20px;
    height: 20px;
}
.notification-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--danger);
    display: none;
}
.notification-badge.active {
    display: block;
}

/* 4. Global Nav Bar */
.phone-nav-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 58px;
    background-color: var(--bg-nav);
    border-top: 1px solid var(--bg-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.03);
    transition: background-color 0.3s ease, border-top-color 0.3s ease;
}
.nav-tab-btn {
    flex: 1;
    border: none;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    gap: 3px;
    transition: color 0.2s ease, transform 0.1s;
}
.nav-tab-btn:active {
    transform: scale(0.92);
}
.nav-tab-icon {
    width: 22px;
    height: 22px;
    transition: transform 0.2s ease;
}
.nav-tab-label {
    font-size: 9px;
    font-weight: 700;
}
.nav-tab-btn.active {
    color: var(--primary);
}
.nav-tab-btn.active .nav-tab-icon {
    transform: scale(1.1);
}

/* 5. Coupon Section Styling */
.coupon-section {
    margin-top: 16px;
    margin-bottom: 16px;
}
.coupon-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.coupon-title span:first-child {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-main);
}
.coupon-sub {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}
.coupon-slider {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.coupon-slider::-webkit-scrollbar {
    display: none;
}
.coupon-card {
    scroll-snap-align: start;
    flex: 0 0 160px;
    background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
    border-radius: var(--border-radius-md);
    padding: 10px 12px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px dashed rgba(255, 255, 255, 0.4);
}
.coupon-card:active {
    transform: scale(0.96);
}
.coupon-orange {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}
.coupon-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
}
.coupon-code {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.coupon-desc {
    font-size: 9px;
    opacity: 0.9;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 6. Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: var(--border-radius-lg);
    padding: 16px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.promo-content {
    z-index: 2;
}
.promo-content h3 {
    font-size: 10px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.promo-content h4 {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2px;
    letter-spacing: -0.3px;
}
.promo-content p {
    font-size: 11px;
    opacity: 0.8;
    margin-bottom: 12px;
    font-weight: 500;
}
.promo-btn {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}
.promo-btn:active {
    transform: scale(0.95);
    background-color: var(--primary-hover);
}
.promo-badge {
    position: absolute;
    right: -10px;
    bottom: -15px;
    width: 100px;
    height: 100px;
    color: rgba(22, 163, 74, 0.15);
    transform: rotate(-15deg);
    pointer-events: none;
}
.promo-badge svg {
    width: 100%;
    height: 100%;
}

/* 7. Exchange Inline Summary Widget */
.exchange-widget {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-border);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.widget-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    cursor: pointer;
}
.widget-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 6px 4px;
}
.widget-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}
.flag-icon {
    font-size: 12px;
}
.widget-pair {
    font-size: 9px;
    font-weight: 800;
    color: var(--text-muted);
}
.widget-price {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-main);
}
.widget-trend {
    font-size: 8px;
    font-weight: 700;
    margin-top: 2px;
}
.positive {
    color: #22c55e;
}
.negative {
    color: #ef4444;
}
.neutral {
    color: var(--text-muted);
}

/* 8. Search and Filter Component */
.search-bar-container {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.search-input-wrapper {
    flex: 1;
    position: relative;
}
.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    pointer-events: none;
}
.search-input-wrapper input {
    width: 100%;
    height: 38px;
    border: 1px solid var(--bg-border);
    background-color: var(--bg-input);
    color: var(--text-main);
    border-radius: var(--border-radius-md);
    padding: 0 12px 0 36px;
    font-size: 13px;
    font-weight: 500;
    outline: none;
    transition: all 0.2s;
}
.search-input-wrapper input:focus {
    border-color: var(--primary);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 2px var(--primary-light);
}

.filter-btn {
    height: 38px;
    border: 1px solid var(--bg-border);
    background-color: var(--bg-card);
    color: var(--text-main);
    border-radius: var(--border-radius-md);
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.2s;
}
.filter-btn:active {
    transform: scale(0.95);
}
.filter-btn svg {
    width: 16px;
    height: 16px;
}

/* Horizontal Categories Scroller */
.categories-tabs {
    display: flex;
    overflow-x: auto;
    gap: 6px;
    margin-bottom: 16px;
    padding-bottom: 2px;
    scrollbar-width: none;
}
.categories-tabs::-webkit-scrollbar {
    display: none;
}
.category-tab-btn {
    white-space: nowrap;
    border: none;
    background-color: var(--bg-pill);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.category-tab-btn:active {
    transform: scale(0.94);
}
.category-tab-btn.active {
    background-color: var(--primary);
    color: #ffffff;
}

/* Product list items */
.list-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.list-section-header h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-main);
}
.sort-toggle-btn {
    border: none;
    background: none;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}
.sort-toggle-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}
.sort-toggle-btn.desc svg {
    transform: rotate(180deg);
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-card-item {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-md);
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.product-card-item:hover {
    border-color: var(--primary);
}
.product-card-item:active {
    transform: scale(0.98);
}
.product-meta-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.product-name-txt {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}
.product-spec-txt {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}
.product-category-lbl {
    font-size: 8px;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 1px;
}
.product-price-block {
    display: flex;
    align-items: center;
    gap: 8px;
}
.price-tag-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.price-main {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-main);
}
.price-sub {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 600;
}
.item-arrow-icon {
    color: var(--text-muted);
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}
.product-card-item:hover .item-arrow-icon {
    color: var(--primary);
    transform: translateX(2px);
}

/* 9. Exchange Tab Styling details */
.exchange-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 12px 0;
}
.status-lbl {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
}
.status-time {
    font-size: 10px;
    color: var(--text-main);
    font-weight: 800;
}
.refresh-btn-ticker {
    border: none;
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
}
.refresh-btn-ticker svg {
    width: 12px;
    height: 12px;
}
.refresh-btn-ticker:active svg {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.rate-card {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-lg);
    padding: 14px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.rate-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rate-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rate-flag {
    font-size: 20px;
}
.rate-info {
    display: flex;
    flex-direction: column;
}
.rate-pair {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-main);
}
.rate-desc {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 600;
}
.rate-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}
.rate-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}
.rate-graph {
    width: 140px;
    height: 38px;
}
.sparkline {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.rate-card-footer {
    display: flex;
    justify-content: flex-start;
    margin-top: 2px;
}
.rate-change {
    font-size: 10px;
    font-weight: 800;
}

/* Quick Converter Layout */
.quick-converter {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-lg);
    padding: 16px;
    margin-top: 16px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.converter-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
}
.converter-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.converter-row {
    display: flex;
    background-color: var(--bg-input);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-md);
    height: 42px;
    overflow: hidden;
    align-items: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.converter-row input {
    flex: 1;
    border: none;
    background: none;
    height: 100%;
    padding: 0 12px;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    outline: none;
}
.converter-row select {
    width: 70px;
    border: none;
    background: none;
    height: 100%;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-main);
    cursor: pointer;
    padding-right: 4px;
    outline: none;
    border-left: 1px solid var(--bg-border);
    text-align: center;
}
.converter-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    height: 16px;
}
.converter-divider svg {
    width: 18px;
    height: 18px;
}

/* 10. Profile Account Screen details */
.profile-header-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: var(--border-radius-lg);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    margin-top: 14px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
}
.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.profile-avatar svg {
    width: 24px;
    height: 24px;
}
.profile-meta {
    display: flex;
    flex-direction: column;
}
.profile-welcome {
    font-size: 9px;
    opacity: 0.85;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.profile-name {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.2px;
}

/* Social Connections Block */
.social-connections-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-lg);
    padding: 12px 14px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}
.social-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.social-links-grid {
    display: flex;
    gap: 8px;
}
.social-link-btn {
    flex: 1;
    height: 38px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    transition: transform 0.15s, opacity 0.15s;
    box-shadow: var(--shadow-sm);
}
.social-link-btn:active {
    transform: scale(0.95);
}
.social-link-btn svg {
    width: 16px;
    height: 16px;
}
.btn-whatsapp {
    background-color: #25d366;
}
.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.btn-telegram {
    background-color: #0088cc;
}

.menu-section-title {
    font-size: 10px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-left: 4px;
    margin-bottom: 6px;
    margin-top: 14px;
}

.settings-group {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.settings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 46px;
    padding: 0 14px;
    cursor: pointer;
    border-bottom: 1px solid var(--bg-border);
    transition: background-color 0.2s;
}
.settings-row:last-child {
    border-bottom: none;
}
.settings-row:active {
    background-color: var(--bg-input);
}
.settings-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.row-icon {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}
.settings-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
}
.settings-row-right {
    display: flex;
    align-items: center;
    gap: 6px;
}
.settings-val {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}
.chevron-icon {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}
.settings-gear-btn {
    border: none;
    background: none;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
}
.settings-gear-btn svg {
    width: 20px;
    height: 20px;
}
.settings-gear-btn:active {
    transform: rotate(45deg);
    transition: transform 0.2s;
}
.text-danger .settings-label {
    color: var(--danger);
}
.color-danger {
    color: var(--danger) !important;
}

/* 11. Live Support (Canlı Destek) Tab */
.chat-viewport {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-page);
    position: relative;
    height: calc(100% - 56px); /* minus header */
}
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.chat-bubble {
    max-width: 80%;
    padding: 10px 12px;
    border-radius: var(--border-radius-md);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
    animation: bubbleSlideIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.bubble-bot {
    align-self: flex-start;
    background-color: var(--bg-card);
    color: var(--text-main);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--bg-border);
}
.bubble-user {
    align-self: flex-end;
    background-color: var(--primary);
    color: #ffffff;
    border-bottom-right-radius: 4px;
}
.bubble-time {
    font-size: 8px;
    opacity: 0.6;
    margin-top: 4px;
    text-align: right;
    display: block;
}

.chat-quick-replies {
    display: flex;
    gap: 6px;
    padding: 4px 12px;
    overflow-x: auto;
    scrollbar-width: none;
}
.chat-quick-replies::-webkit-scrollbar {
    display: none;
}
.chat-chip {
    white-space: nowrap;
    border: 1px solid var(--primary);
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.chat-chip:active {
    transform: scale(0.95);
}

.chat-input-bar {
    height: 52px;
    border-top: 1px solid var(--bg-border);
    background-color: var(--bg-card);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.chat-input-bar input {
    flex: 1;
    height: 36px;
    border: 1px solid var(--bg-border);
    background-color: var(--bg-input);
    color: var(--text-main);
    border-radius: var(--border-radius-md);
    padding: 0 12px;
    font-size: 12px;
    font-weight: 600;
    outline: none;
}
.chat-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.chat-send-btn:active {
    transform: scale(0.9);
}
.chat-send-btn svg {
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

@keyframes bubbleSlideIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 12. Preferences Overlay sub-pages slider */
.subpage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-page);
    z-index: 500;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.subpage-overlay.open {
    transform: translateX(0);
}
.subpage-header {
    height: 52px;
    border-bottom: 1px solid var(--bg-border);
    background-color: var(--bg-device);
    display: flex;
    align-items: center;
    padding: 0 8px;
    flex-shrink: 0;
}
.subpage-header h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-main);
    flex: 1;
    text-align: center;
    margin-right: 28px; /* Counterbalance back button offset */
}
.back-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.back-btn svg {
    width: 24px;
    height: 24px;
}
.save-header-btn {
    border: none;
    background: none;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    padding: 0 10px;
}

.subpage-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

/* Options selectors inside panels */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.option-item-card {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-md);
    height: 48px;
    padding: 0 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
}
.option-item-card.active {
    border-color: var(--primary);
}
.option-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.option-emoji {
    font-size: 16px;
}
.option-item-left span:last-child {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
}
.option-radio-btn {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    position: relative;
}
.option-item-card.active .option-radio-btn {
    border-color: var(--primary);
    background-color: var(--primary);
}
.option-item-card.active .option-radio-btn::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ffffff;
}

/* User edit form styling */
.input-screen-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.input-screen-box label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
}
.styled-text-input {
    width: 100%;
    height: 42px;
    border: 1px solid var(--bg-border);
    background-color: var(--bg-card);
    color: var(--text-main);
    border-radius: var(--border-radius-md);
    padding: 0 12px;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s;
}
.styled-text-input:focus {
    border-color: var(--primary);
}
.input-tip-msg {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 2px;
    line-height: 1.3;
}

.phone-input-row {
    display: flex;
    gap: 8px;
}
.country-code-selector {
    position: relative;
    border: 1px solid var(--bg-border);
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    height: 42px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
}
.country-code-selector select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.dropdown-arrow-svg {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
}
.flex-1 {
    flex: 1;
}

/* Bank Details Styling */
.transfer-desc-box {
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-muted);
    background-color: var(--bg-pill);
    padding: 10px;
    border-radius: var(--border-radius-md);
    margin-bottom: 14px;
}
.bank-cards-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bank-card {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-md);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bank-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--bg-border);
    padding-bottom: 6px;
}
.bank-name {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-main);
}
.bank-currency {
    font-size: 10px;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
}
.bank-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}
.bank-lbl {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}
.bank-val {
    font-size: 11px;
    color: var(--text-main);
    font-weight: 700;
    word-break: break-all;
    flex: 1;
    text-align: right;
}
.copy-btn-small {
    border: none;
    background: none;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px;
}
.copy-btn-small svg {
    width: 14px;
    height: 14px;
}
.copy-btn-small:active {
    transform: scale(0.9);
}

/* Cargo Tracking Timeline style */
.cargo-card {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-md);
    padding: 14px;
}
.cargo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--bg-border);
    padding-bottom: 8px;
    margin-bottom: 14px;
}
.cargo-no-box {
    display: flex;
    flex-direction: column;
}
.cargo-lbl {
    font-size: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}
.cargo-no {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-main);
}
.cargo-status-badge {
    font-size: 9px;
    background-color: var(--bg-pill);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 800;
}
.cargo-status-badge.active {
    background-color: var(--primary-light);
    color: var(--primary);
}

.cargo-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    padding-left: 20px;
}
.cargo-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background-color: var(--bg-border);
}
.timeline-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.step-circle {
    position: absolute;
    left: -20px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--bg-device);
    border: 2px solid var(--bg-border);
    color: var(--text-muted);
    font-size: 8px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.timeline-step.done .step-circle {
    border-color: var(--primary);
    background-color: var(--primary);
    color: #ffffff;
}
.timeline-step.active .step-circle {
    border-color: var(--primary);
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 9px;
}
.step-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.step-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
}
.timeline-step.done .step-title,
.timeline-step.active .step-title {
    color: var(--text-main);
}
.step-date {
    font-size: 9px;
    color: var(--text-muted);
}

/* About Screen details */
.padding-20 {
    padding: 24px 20px;
}
.about-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}
.about-logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.about-ver {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
}
.about-text {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-main);
    margin-bottom: 14px;
    font-weight: 500;
}
.about-divider {
    height: 1px;
    background-color: var(--bg-border);
    margin: 20px 0;
}
.about-footer {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Bottom Sheet Modal Filter details */
.bottom-sheet-modal {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-device);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
    z-index: 600;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.bottom-sheet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 599;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.bottom-sheet-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.bottom-sheet-modal.open {
    transform: translateY(0);
}
.bottom-sheet-drag-handle {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background-color: var(--bg-border);
    margin: 8px auto 4px auto;
}
.bottom-sheet-header {
    padding: 4px 16px 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--bg-border);
}
.bottom-sheet-header h3 {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-main);
}
.close-sheet-btn {
    border: none;
    background: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
}
.bottom-sheet-body {
    padding: 16px;
}
.filter-section {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.filter-section-lbl {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
}
.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}
.price-range-inputs input {
    flex: 1;
}
.range-dash {
    color: var(--text-muted);
    font-size: 12px;
}
.filter-actions-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.btn-primary {
    flex: 1;
    height: 38px;
    background-color: var(--primary);
    border: none;
    border-radius: var(--border-radius-md);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}
.btn-primary:active {
    background-color: var(--primary-hover);
    transform: scale(0.97);
}
.btn-secondary {
    flex: 0 0 90px;
    height: 38px;
    background-color: var(--bg-pill);
    border: none;
    border-radius: var(--border-radius-md);
    color: var(--text-main);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}
.btn-secondary:active {
    transform: scale(0.97);
}

/* Product Detail Panel (Modal) */
.detail-meta-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid var(--bg-border);
    padding-bottom: 14px;
    margin-bottom: 14px;
}
.detail-category {
    font-size: 9px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.detail-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}
.detail-specs-box {
    background-color: var(--bg-pill);
    padding: 10px 12px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}
.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}
.spec-lbl {
    color: var(--text-muted);
    font-weight: 600;
}
.spec-val {
    color: var(--text-main);
    font-weight: 700;
}
.detail-desc-box {
    margin-bottom: 20px;
}
.detail-desc-lbl {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.detail-desc-text {
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-main);
    font-weight: 500;
}
.detail-pricing-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-md);
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.detail-pricing-left {
    display: flex;
    flex-direction: column;
}
.detail-price-main {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
}
.detail-price-sub {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}
.detail-buy-btn {
    height: 40px;
    background-color: #25d366; /* WhatsApp Green */
    color: #ffffff;
    border: none;
    border-radius: var(--border-radius-md);
    padding: 0 16px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.1s;
}
.detail-buy-btn:active {
    transform: scale(0.95);
}
.detail-buy-btn svg {
    width: 16px;
    height: 16px;
}

/* 13. Toast Notification Alert details */
.toast-container {
    position: absolute;
    top: 48px; /* Float below status bar */
    left: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1000;
    pointer-events: none;
}
.toast-msg {
    background-color: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: toastSlideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast-success {
    border-left: 3px solid var(--primary);
}
.toast-icon {
    width: 14px;
    height: 14px;
}
@keyframes toastSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 14. Dialog Modal Details */
.dialog-modal-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.dialog-modal-wrapper.open {
    opacity: 1;
    pointer-events: auto;
}
.dialog-box {
    background-color: var(--bg-device);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--bg-border);
    width: 100%;
    max-width: 300px;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: scale(0.95);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.dialog-modal-wrapper.open .dialog-box {
    transform: scale(1);
}
.dialog-box h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-main);
}
.dialog-box p {
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-muted);
    font-weight: 500;
}
.dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 8px;
}
.btn-dialog-primary {
    background-color: var(--primary);
    border: none;
    border-radius: var(--border-radius-sm);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 12px;
    cursor: pointer;
}
.btn-dialog-secondary {
    background-color: var(--bg-pill);
    border: none;
    border-radius: var(--border-radius-sm);
    color: var(--text-main);
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    cursor: pointer;
}

/* ==========================================================================
   15. Adaptive Responsive Behavior
   If screen width is smaller than 480px, it fits perfectly on standard phones.
   The outer chassis bezel borders disappear, and mockup occupies entire screen.
   ========================================================================== */
@media screen and (max-width: 480px) {
    body {
        background-color: var(--bg-page);
    }
    .device-wrapper {
        padding: 0;
        border-radius: 0;
        background: none;
        box-shadow: none;
        width: 100vw;
        height: 100vh;
    }
    .phone-frame {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        border: none;
    }
    .phone-notch {
        display: none; /* Hide device notch overlay on real phone viewports */
    }
    .phone-status-bar {
        padding-top: 14px;
        height: 44px;
    }
    .subpage-overlay {
        top: 44px;
        height: calc(100% - 44px);
    }
}

/* ==========================================================================
   16. E-Commerce Cart, Coupons & Order History Styles
   ========================================================================== */

/* Product Detail Buttons Row */
.detail-actions-row .btn-add-cart,
.detail-actions-row .btn-buy-now {
    flex: 1;
    height: 40px;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.1s ease, filter 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail-actions-row .btn-add-cart {
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--primary);
}
.detail-actions-row .btn-buy-now {
    background-color: #25d366; /* WhatsApp Green */
    color: #ffffff;
}
.detail-actions-row .btn-add-cart:active,
.detail-actions-row .btn-buy-now:active {
    transform: scale(0.95);
}

/* Cart Subpage */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.cart-item-row {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-md);
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.cart-item-name {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-main);
}
.cart-item-spec {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 600;
}
.cart-item-price-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 2px;
}
.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.qty-selector {
    display: flex;
    align-items: center;
    background-color: var(--bg-pill);
    border-radius: 14px;
    overflow: hidden;
    height: 28px;
    border: 1px solid var(--bg-border);
}
.qty-btn {
    border: none;
    background: none;
    width: 28px;
    height: 100%;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:active {
    background-color: var(--bg-border);
}
.qty-val {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-main);
    padding: 0 4px;
    min-width: 16px;
    text-align: center;
}
.btn-delete-cart-item {
    border: none;
    background: none;
    color: var(--danger);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px;
}
.btn-delete-cart-item svg {
    width: 18px;
    height: 18px;
}
.btn-delete-cart-item:active {
    transform: scale(0.9);
}

/* Coupon Box inside Cart */
.cart-coupon-box {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.cart-coupon-box input {
    flex: 1;
    height: 38px;
}
.btn-apply-coupon {
    height: 38px;
    padding: 0 16px;
    border: none;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    border-radius: var(--border-radius-md);
    cursor: pointer;
}
.btn-apply-coupon:active {
    transform: scale(0.95);
}

/* Active Applied Coupon Banner */
.active-coupon-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px dashed #22c55e;
    border-radius: var(--border-radius-md);
    padding: 8px 12px;
    margin-bottom: 16px;
}
.active-coupon-display span {
    font-size: 11px;
    font-weight: 800;
    color: #22c55e;
}
.btn-remove-coupon {
    border: none;
    background: none;
    color: #ef4444;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

/* Calculation Details Card */
.cart-calc-card {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-lg);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.calc-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}
.calc-detail-row span:first-child {
    color: var(--text-muted);
    font-weight: 600;
}
.calc-detail-row span:last-child {
    color: var(--text-main);
    font-weight: 700;
}
.calc-divider {
    height: 1px;
    background-color: var(--bg-border);
    margin: 4px 0;
}
.calc-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.calc-total-row span:first-child {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-main);
}
.calc-total-usd {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}
.calc-total-try {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 6px;
}

/* Checkout Button */
.checkout-btn {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: var(--border-radius-md);
    background-color: #25d366; /* WhatsApp Green */
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}
.checkout-btn:active {
    transform: scale(0.98);
}
.checkout-btn svg {
    width: 18px;
    height: 18px;
}

/* Coupon Cards inside Account subpage */
.coupon-cards-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.coupon-card {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-lg);
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.coupon-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--primary);
}
.coupon-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 6px;
}
.coupon-code-badge {
    font-family: monospace;
    font-size: 12px;
    font-weight: 800;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 3px 8px;
    border-radius: 4px;
    align-self: flex-start;
    border: 1px dashed var(--primary);
}
.coupon-card-desc {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px;
}
.btn-copy-coupon {
    border: none;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-copy-coupon:active {
    transform: scale(0.95);
    background-color: var(--primary);
    color: #ffffff;
}

/* Order History Cards */
.orders-history-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.order-history-card {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-lg);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}
.order-history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--bg-border);
    padding-bottom: 6px;
}
.order-date {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 700;
}
.order-status-chip {
    font-size: 9px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}
.order-status-chip.preparing {
    background-color: rgba(234, 179, 8, 0.1);
    color: #ca8a04;
}
.order-status-chip.in-transit {
    background-color: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}
.order-status-chip.delivered {
    background-color: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}
.order-history-items {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
}
.order-history-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    border-top: 1px dashed var(--bg-border);
    padding-top: 6px;
}
.order-total-lbl {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
}
.order-total-val {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
}

/* ==========================================================================
   New Feature Extensions: Coupons Slider, Support Direct Banner, Corporate
   ========================================================================== */

/* Coupon Slider */
.coupon-slider-section {
    margin: 16px 0;
}
.coupon-section-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}
.coupon-section-title span:first-child {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-main);
}
.coupon-section-subtitle {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
}
.coupon-slider-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}
.coupon-slider-container::-webkit-scrollbar {
    height: 4px;
}
.coupon-slider-container::-webkit-scrollbar-thumb {
    background-color: var(--bg-border);
    border-radius: 2px;
}
.coupon-slide-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: var(--border-radius-md);
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.coupon-slide-card:active {
    transform: scale(0.98);
}
.coupon-slide-card.coupon-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}
.coupon-slide-card.coupon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}
.coupon-card-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.coupon-emoji {
    font-size: 20px;
}
.coupon-info {
    display: flex;
    flex-direction: column;
}
.coupon-code {
    font-size: 13px;
    font-weight: 800;
    font-family: monospace;
    letter-spacing: 0.5px;
}
.coupon-desc {
    font-size: 9px;
    opacity: 0.9;
    font-weight: 600;
    margin-top: 1px;
}
.coupon-btn-label {
    font-size: 9px;
    font-weight: 800;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Direct Support WhatsApp Banner */
.support-direct-banner {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--bg-border);
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}
.support-direct-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    max-width: 70%;
}
.support-direct-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-main);
}
.support-direct-subtitle {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.2;
}
.support-direct-btn {
    display: flex;
    align-items: center;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    padding: 6px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
    transition: transform 0.2s;
}
.support-direct-btn:active {
    transform: scale(0.95);
}

/* Corporate Hakkımızda styles */
.about-corporate-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
}
.about-section-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    border-left: 3px solid var(--primary);
    padding-left: 8px;
    margin-bottom: 2px;
}
.about-text {
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-main);
}
.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 4px;
}
.about-list li {
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-main);
    position: relative;
    padding-left: 12px;
}
.about-list li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Social Link button shadows */
.social-link-btn.btn-whatsapp {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25) !important;
}
.social-link-btn.btn-instagram {
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.25) !important;
}
.social-link-btn.btn-telegram {
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.25) !important;
}

/* ==========================================================================
   Premium Coupon Styling
   ========================================================================== */
.account-coupons-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.account-coupon-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: var(--border-radius-md);
    padding: 12px 16px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.account-coupon-card::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}
.account-coupon-card:active {
    transform: scale(0.98);
}
.account-coupon-card.coupon-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}
.account-coupon-card.coupon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}
.coupon-card-main {
    display: flex;
    align-items: center;
    gap: 12px;
}
.coupon-emoji {
    font-size: 22px;
}
.coupon-info {
    display: flex;
    flex-direction: column;
}
.coupon-code {
    font-size: 14px;
    font-weight: 800;
    font-family: monospace;
    letter-spacing: 0.5px;
}
.coupon-desc {
    font-size: 10px;
    opacity: 0.95;
    font-weight: 600;
    margin-top: 1px;
}
.coupon-card-action {
    display: flex;
    align-items: center;
}
.coupon-btn-label {
    font-size: 9px;
    font-weight: 800;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: background-color 0.2s;
}
.account-coupon-card:hover .coupon-btn-label {
    background-color: rgba(255, 255, 255, 0.3);
}

.coupon-card-full {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: var(--border-radius-lg);
    padding: 16px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.15);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.coupon-card-full:active {
    transform: scale(0.98);
}
.coupon-card-full.coupon-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.15);
}
.coupon-card-full.coupon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.15);
}
.coupon-card-full-left {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    flex-shrink: 0;
}
.coupon-badge-tag {
    font-size: 16px;
    font-weight: 800;
}
.coupon-card-full-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.coupon-code-txt {
    font-size: 16px;
    font-weight: 800;
    font-family: monospace;
    letter-spacing: 0.5px;
}
.coupon-desc-txt {
    font-size: 11px;
    opacity: 0.95;
    font-weight: 600;
    margin-top: 2px;
}

/* ==========================================================================
   State-of-the-Art Desktop Grid & Panel Layouts (Duyarlı Tasarım)
   ========================================================================== */
@media screen and (min-width: 768px) {
    /* Center layout grid for main blocks */
    .app-header {
        max-width: 1100px !important;
        margin: 0 auto !important;
        padding: 0 24px !important;
        width: 100% !important;
    }
    .phone-nav-bar {
        height: 64px !important;
        max-width: 1100px !important;
        width: 100% !important;
        padding: 0 24px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .nav-tab-btn {
        max-width: 220px !important;
        margin: 0 auto;
    }
    .screen-scrollable {
        max-width: 1100px !important;
        margin: 0 auto !important;
        padding: 16px 24px 32px 24px !important;
        width: 100% !important;
    }

    /* Product Grid Layout on Desktop */
    .product-list {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
        gap: 16px !important;
    }
    .product-card-item {
        margin-bottom: 0 !important;
        padding: 16px 20px !important;
        background-color: var(--bg-card);
        border: 1px solid var(--bg-border);
        border-radius: var(--border-radius-lg) !important;
        box-shadow: var(--shadow-sm);
    }
    .product-name-txt {
        font-size: 15px !important;
    }
    .product-spec-txt {
        font-size: 11px !important;
    }
    .price-main {
        font-size: 15px !important;
    }

    /* Exchange Grid Layout on Desktop */
    #screen-exchange .screen-scrollable {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 16px !important;
        align-content: start;
    }
    #screen-exchange .exchange-status {
        grid-column: 1 / -1 !important;
        margin-top: 0 !important;
        margin-bottom: 8px !important;
    }
    #screen-exchange .quick-converter {
        grid-column: 1 / -1 !important;
        margin-top: 16px !important;
    }
    #screen-exchange .rate-card {
        margin-bottom: 0 !important;
        padding: 20px !important;
        border-radius: var(--border-radius-lg) !important;
    }

    /* Account Grid Layout on Desktop */
    #screen-account .screen-scrollable {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        align-content: start;
    }
    #screen-account .profile-header-card {
        grid-column: 1 / -1 !important;
        margin-top: 0 !important;
        padding: 24px !important;
    }
    #screen-account .social-connections-panel {
        grid-column: 1 !important;
        margin-bottom: 0 !important;
        height: fit-content;
    }
    #screen-account .account-coupons-panel {
        grid-column: 1 !important;
        margin-bottom: 0 !important;
    }
    #screen-account .menu-section-title {
        grid-column: 2 !important;
        margin-top: 0 !important;
        margin-bottom: 8px !important;
    }
    #screen-account .settings-group {
        grid-column: 2 !important;
        margin-bottom: 16px !important;
    }
    /* Settings titles ordering */
    #screen-account .menu-section-title:nth-of-type(1) { grid-row: 2; }
    #screen-account .settings-group:nth-of-type(1) { grid-row: 3; }
    #screen-account .menu-section-title:nth-of-type(2) { grid-row: 4; }
    #screen-account .settings-group:nth-of-type(2) { grid-row: 5; }
    #screen-account .menu-section-title:nth-of-type(3) { grid-row: 6; }
    #screen-account .settings-group:nth-of-type(3) { grid-row: 7; }

    /* Modern Sliding Drawers (Drawer Overlay) on Desktop */
    .subpage-overlay {
        left: auto !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 480px !important;
        border-left: 1px solid var(--bg-border) !important;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12) !important;
        transform: translateX(100%) !important;
    }
    .subpage-overlay.open {
        transform: translateX(0) !important;
    }

    /* Modal center floating on Desktop */
    .bottom-sheet-modal {
        max-width: 500px !important;
        left: 50% !important;
        transform: translate(-50%, 20px) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        border-radius: var(--border-radius-lg) !important;
        bottom: 15% !important;
        border: 1px solid var(--bg-border) !important;
        box-shadow: 0 12px 36px rgba(0,0,0,0.18) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
    }
    .bottom-sheet-modal.open {
        transform: translate(-50%, 0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

#screen-home .screen-scrollable {
    padding-top: 16px !important;
}

/* Monospace Holographic Phone Input Removed */

/* Premium circular-punched ticket stub styling for coupons */
.account-coupons-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.account-coupon-card {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    color: var(--text-main);
    overflow: visible !important; /* Vital for punched notches visibility */
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

/* Semi-circular ticket notches */
.account-coupon-card::before,
.account-coupon-card::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    background-color: var(--bg-page) !important; /* Cut out effect by matching bg */
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 5;
    transition: background-color 0.3s ease;
}
.account-coupon-card::before {
    left: -8px;
    box-shadow: inset -1px 0 2px rgba(0, 0, 0, 0.05);
}
.account-coupon-card::after {
    right: -8px;
    box-shadow: inset 1px 0 2px rgba(0, 0, 0, 0.05);
}

/* Pastel theme variations for cards */
/* 1. Green card (WELCOME10) */
.account-coupon-card {
    background: rgba(22, 163, 74, 0.06) !important;
    border: 1.5px dashed rgba(22, 163, 74, 0.35) !important;
}
.account-coupon-card:hover {
    background: rgba(22, 163, 74, 0.1) !important;
    border-color: rgba(22, 163, 74, 0.6) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.account-coupon-card .coupon-code {
    color: #16a34a !important;
    font-size: 15px;
    font-weight: 800;
}
.account-coupon-card .coupon-btn-label {
    color: #16a34a !important;
    background-color: rgba(22, 163, 74, 0.1) !important;
}

/* 2. Orange card (EKOKEN50) */
.account-coupon-card.coupon-orange {
    background: rgba(249, 115, 22, 0.06) !important;
    border: 1.5px dashed rgba(249, 115, 22, 0.35) !important;
}
.account-coupon-card.coupon-orange:hover {
    background: rgba(249, 115, 22, 0.1) !important;
    border-color: rgba(249, 115, 22, 0.6) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.account-coupon-card.coupon-orange .coupon-code {
    color: #f97316 !important;
    font-size: 15px;
    font-weight: 800;
}
.account-coupon-card.coupon-orange .coupon-btn-label {
    color: #f97316 !important;
    background-color: rgba(249, 115, 22, 0.1) !important;
}

/* 3. Purple card (FASTSHIP) */
.account-coupon-card.coupon-purple {
    background: rgba(139, 92, 246, 0.06) !important;
    border: 1.5px dashed rgba(139, 92, 246, 0.35) !important;
}
.account-coupon-card.coupon-purple:hover {
    background: rgba(139, 92, 246, 0.1) !important;
    border-color: rgba(139, 92, 246, 0.6) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.account-coupon-card.coupon-purple .coupon-code {
    color: #8b5cf6 !important;
    font-size: 15px;
    font-weight: 800;
}
.account-coupon-card.coupon-purple .coupon-btn-label {
    color: #8b5cf6 !important;
    background-color: rgba(139, 92, 246, 0.1) !important;
}

.coupon-desc {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
}
.theme-dark .coupon-desc {
    color: rgba(255, 255, 255, 0.75);
}

/* Product Detail Modal Coupon & Discount styling */
.detail-coupon-box {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-md);
    padding: 12px 14px;
    margin-bottom: 16px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.detail-coupon-lbl {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.detail-coupon-input-row {
    display: flex;
    gap: 8px;
}
.uppercase-input {
    text-transform: uppercase;
    font-family: monospace;
    font-weight: 700;
    letter-spacing: 1px;
}
.btn-apply-coupon {
    height: 38px;
    padding: 0 16px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--primary);
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-apply-coupon:hover {
    background-color: var(--primary);
    color: #ffffff;
}
.btn-apply-coupon:active {
    transform: scale(0.95);
}
.coupon-status-msg {
    font-size: 10px;
    font-weight: 700;
    margin-top: 6px;
    min-height: 14px;
}
.coupon-status-msg.success {
    color: #22c55e;
}
.coupon-status-msg.error {
    color: #ef4444;
}

/* Strikethrough and Neon Discounts */
.original-strike {
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.65;
    font-size: 15px;
    font-weight: 600;
    margin-right: 6px;
}
.discounted-neon {
    color: #22c55e;
    font-weight: 800;
    font-size: 20px;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.35);
}
.original-strike-sub {
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.6;
    font-size: 10px;
    font-weight: 600;
    margin-right: 4px;
}
.discounted-neon-sub {
    color: #22c55e;
    font-weight: 700;
    font-size: 12px;
    opacity: 0.95;
}

/* ==========================================================================
   v3.1-Pro New Core Styles (Holograms, Punched Coupons, Payments, Installments)
   ========================================================================== */

/* Holographic Ghost Inputs Removed */

/* Punched Ticket Coupons */
.account-coupon-card {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 64px;
    border: none;
    margin-bottom: 8px;
}
.account-coupon-card:active {
    transform: scale(0.97);
    box-shadow: none;
}
.account-coupon-card.coupon-blue { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); }
.account-coupon-card.coupon-orange { background: linear-gradient(135deg, #c2410c 0%, #f97316 100%); }
.account-coupon-card.coupon-purple { background: linear-gradient(135deg, #5b21b6 0%, #8b5cf6 100%); }
.account-coupon-card.coupon-gold { background: linear-gradient(135deg, #854d0e 0%, #eab308 100%); }
.account-coupon-card::before, .account-coupon-card::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    background-color: var(--bg-page);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 3;
}
.account-coupon-card::before { left: -6px; }
.account-coupon-card::after { right: -6px; }
.coupon-card-left { width: 50px; display: flex; justify-content: center; align-items: center; border-right: 1px dashed rgba(255,255,255,0.3); height: 100%; }
.coupon-card-main { flex: 1; padding: 0 12px; display: flex; flex-direction: column; justify-content: center; }
.coupon-card-right { padding: 0 16px; display: flex; justify-content: center; align-items: center; font-size: 10px; font-weight: 800; text-transform: uppercase; background-color: rgba(0,0,0,0.15); height: 100%; }

/* Installments Calculator Grid */
.detail-installments-box { margin: 16px 0; padding: 0 4px; }
.detail-installments-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 8px; margin-top: 8px; }
.installment-card { background-color: var(--bg-card); border: 1px solid var(--bg-border); border-radius: var(--border-radius-md); padding: 10px; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.2s, border-color 0.2s; box-shadow: var(--shadow-sm); }
.installment-card:hover { transform: translateY(-2px); border-color: var(--primary); }
.installment-card.cash-card { background: linear-gradient(135deg, rgba(22,163,74,0.05) 0%, rgba(22,163,74,0.02) 100%); border: 1px solid rgba(22,163,74,0.3); }
.installment-months { font-size: 11px; font-weight: 800; color: var(--text-main); }
.installment-total-label { font-size: 10px; color: var(--text-muted); display: block; margin-top: 4px; }
.installment-badge { display: inline-block; font-size: 8px; font-weight: 800; color: var(--primary); background-color: var(--primary-light); padding: 2px 6px; border-radius: 20px; margin-top: 6px; text-transform: uppercase; }

/* Realistic Bank Cards */
.bank-card { position: relative; border-radius: var(--border-radius-lg); padding: 16px; height: 170px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 8px 24px rgba(0,0,0,0.12); overflow: hidden; color: #ffffff; transition: transform 0.2s; }
.bank-card:hover { transform: translateY(-3px); }
.card-glass-glow { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%); transform: rotate(30deg); pointer-events: none; z-index: 1; }
.card-chip { position: absolute; top: 52px; left: 16px; width: 32px; height: 24px; background: linear-gradient(135deg, #e5c158 0%, #b38915 100%); border-radius: 4px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.4); z-index: 2; }
.bank-vakif { background: linear-gradient(135deg, #854d0e 0%, #ca8a04 50%, #eab308 100%); border: 1px solid rgba(234,179,8,0.2); }
.bank-is { background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%); border: 1px solid rgba(59,130,246,0.2); }
.card-holder-row { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 24px; padding-left: 44px; z-index: 2; }
.card-info-item label { display: block; font-size: 7px; font-weight: 700; opacity: 0.7; letter-spacing: 0.5px; }
.card-info-item span { font-size: 11px; font-weight: 800; letter-spacing: 0.5px; }
.iban-row { margin-top: 14px; z-index: 2; }
.iban-row label { display: block; font-size: 7px; font-weight: 700; opacity: 0.7; }
.iban-copy-wrapper { display: flex; justify-content: space-between; align-items: center; background-color: rgba(0,0,0,0.15); padding: 6px 10px; border-radius: var(--border-radius-sm); }

/* Glassmorphic Kredi Kartı Mockup */
.glass-card-mockup-wrapper { margin: 20px 0 14px 0; display: flex; justify-content: center; }
.glass-credit-card { position: relative; width: 100%; max-width: 320px; height: 170px; border-radius: var(--border-radius-lg); background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.03) 100%); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.15); padding: 16px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 10px 30px rgba(0,0,0,0.15); overflow: hidden; color: var(--text-main); }
.glass-card-glow { position: absolute; top: -40%; left: -40%; width: 150%; height: 150%; background: radial-gradient(circle at top left, rgba(22,163,74,0.15), transparent 60%); pointer-events: none; z-index: 1; }
.glass-card-top { display: flex; justify-content: space-between; align-items: center; z-index: 2; }
.glass-card-logo { font-size: 13px; font-weight: 800; color: var(--primary); }
.glass-card-brand { font-size: 8px; font-weight: 800; letter-spacing: 1px; color: var(--text-muted); }
.glass-card-chip { width: 32px; height: 24px; background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%); border-radius: 4px; margin-top: 10px; z-index: 2; position: relative; }
.glass-card-number { font-family: monospace; font-size: 16px; font-weight: 700; letter-spacing: 2px; margin-top: 14px; z-index: 2; opacity: 0.85; }
.glass-card-bottom { display: flex; justify-content: space-between; align-items: flex-end; z-index: 2; }
.glass-card-holder label, .glass-card-amount label { display: block; font-size: 6px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.5px; }
.glass-card-holder span { font-size: 10px; font-weight: 800; color: var(--text-main); }
.glass-card-amount span { font-size: 11px; font-weight: 800; color: var(--primary); }

/* Trust and Badges */
.payment-trust-badges { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding: 8px 6px; border-top: 1px dashed var(--bg-border); border-bottom: 1px dashed var(--bg-border); }
.badge-item { display: flex; align-items: center; gap: 4px; font-size: 9px; font-weight: 800; color: var(--text-muted); }
.card-brand-icon { font-size: 9px; font-weight: 900; color: var(--text-muted); opacity: 0.5; }
.card-brand-icon.visa { color: #1a1f71; }
.theme-dark .card-brand-icon.visa { color: #ffffff; }
.card-brand-icon.mastercard { color: #eb001b; }

/* ==========================================================================
   v3.2-Pro Premium Web UI Extensions (Thick Secure Button, Cargo Timeline, Stacked Pricing, Selected Installment Glow)
   ========================================================================== */

/* 1. Selectable Installment Glow & Scale */
.installment-card.selected {
    border-color: #22c55e !important;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.4) !important;
    transform: scale(1.02) !important;
}

/* 2. Thick Glowing PayTR Secure Submit Button */
.premium-pay-btn {
    width: 100%;
    height: 56px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #4f46e5 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 12px;
    position: relative;
    overflow: hidden;
}
.premium-pay-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}
.premium-pay-btn:hover:not(:disabled)::before {
    left: 100%;
    transition: 0.7s;
}
.premium-pay-btn:hover:not(:disabled) {
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #9333ea 0%, #4f46e5 100%);
    transform: translateY(-2px);
}
.premium-pay-btn:active:not(:disabled) {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}
.premium-pay-btn:disabled {
    opacity: 0.9;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: none;
    cursor: not-allowed;
}

/* Secure Pay Button Lock Icon Animation */
.pay-btn-lock-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: pulse-lock 2s infinite ease-in-out;
}
@keyframes pulse-lock {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

/* 3. Secure Pay Spinner Keyframes */
.pay-btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
}

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

/* 4. Vertically Stacked Pricing Summary */
.detail-pricing-panel-vertical {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-lg);
    padding: 16px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow-md);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.detail-pricing-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.detail-pricing-total-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.detail-pricing-vals {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.detail-price-main {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
}
.detail-price-sub {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}
.btn-buy-now-premium {
    width: 100%;
    height: 48px;
    background-color: #25d366;
    border: none;
    border-radius: var(--border-radius-md);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.btn-buy-now-premium:hover {
    background-color: #22c55e;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}
.btn-buy-now-premium:active {
    transform: scale(0.98);
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.15);
}

/* 5. Kargom Nerede Cargo Details Card */
.cargo-card {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.cargo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed var(--bg-border);
    padding-bottom: 12px;
}
.cargo-no-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cargo-lbl {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cargo-customer-val {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-main);
}
.cargo-no {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
}
.cargo-status-badge {
    font-size: 9px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: var(--bg-pill);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.cargo-status-badge.active {
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

/* 6. Cargo 4-Step Progress Timeline */
.cargo-timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 16px;
    padding-left: 8px;
}
.cargo-timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 10px;
    bottom: 24px;
    width: 2px;
    background-color: var(--bg-border);
    z-index: 1;
}
.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.timeline-step:last-child {
    margin-bottom: 0;
}
.step-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 2px solid var(--bg-border);
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
}
.step-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.step-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    transition: color 0.3s ease;
}
.step-date {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Timeline State Modifiers */
.timeline-step.done .step-circle {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 0 8px rgba(22, 163, 74, 0.3);
}
.timeline-step.done .step-title {
    color: var(--text-main);
}
.timeline-step.active .step-circle {
    background-color: var(--bg-card);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(22, 163, 74, 0.4);
    transform: scale(1.1);
}
.timeline-step.active .step-title {
    color: var(--primary);
    font-weight: 800;
}

/* ==========================================================================
   17. Ekoken Elite v3.5-Elite Premium Additions
   ========================================================================== */

/* Canlı Destek Online/Offline Glow & Support Cards */
.support-status-pulse {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.support-status-pulse.online {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}
.support-status-pulse.offline {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: relative;
}
.support-status-pulse.online .pulse-dot {
    background-color: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: pulseGlowGreen 1.5s infinite;
}
.support-status-pulse.offline .pulse-dot {
    background-color: #ef4444;
}
@keyframes pulseGlowGreen {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Premium Kargo Takip (Zaman Tüneli Revizyonu ve Simüle Harita) */
.cargo-visualizer-container {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-md);
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}
.cargo-visualizer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, #a855f7 100%);
}
.simulated-map-box {
    background-color: var(--bg-pill);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-md);
    padding: 12px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}
.simulated-map-radar {
    display: flex;
    align-items: center;
    gap: 8px;
}
.radar-pulse-ring {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    animation: radarPulse 2s infinite;
}
@keyframes radarPulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.8); }
    100% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}
.simulated-map-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-main);
}
.simulated-map-sub {
    font-size: 10px;
    color: var(--text-muted);
}

/* PayTR 3D Secure OTP & Interactive checkout components */
.glass-credit-card-elite {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 160px;
    margin-bottom: 20px;
    overflow: hidden;
}
.glass-credit-card-elite::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.paytr-input-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* 3D Secure OTP Modal Styles */
.otp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    z-index: 1200;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.otp-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.otp-modal-box {
    background: var(--bg-device);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 320px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}
.otp-modal-overlay.open .otp-modal-box {
    transform: scale(1);
}
.otp-header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.otp-header-logo span:first-child {
    font-weight: 800;
    font-size: 16px;
    color: #3b82f6;
    letter-spacing: -0.5px;
}
.otp-header-logo span:last-child {
    background: #3b82f6;
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}
.otp-loading-bar-wrapper {
    height: 4px;
    width: 100%;
    background-color: var(--bg-pill);
    border-radius: 2px;
    overflow: hidden;
    margin: 8px 0;
}
.otp-loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
}
.otp-loading-progress.animate {
    animation: otpLoadingWidth 5s linear forwards;
}
@keyframes otpLoadingWidth {
    0% { width: 0%; }
    100% { width: 100%; }
}
.otp-input-code-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}
.otp-digit-field {
    width: 42px;
    height: 46px;
    border: 1px solid var(--bg-border);
    background-color: var(--bg-card);
    color: var(--text-main);
    border-radius: var(--border-radius-md);
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    outline: none;
    transition: all 0.2s;
}
.otp-digit-field:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

/* Admin Portal / Dashboard Grid Components */
.admin-portal-login-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}
.admin-shield-icon {
    width: 64px;
    height: 64px;
    color: var(--primary);
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px auto;
}
.admin-shield-icon svg {
    width: 32px;
    height: 32px;
}
.admin-dashboard-container {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.admin-tabs-header {
    display: flex;
    background-color: var(--bg-pill);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-md);
    padding: 4px;
}
.admin-tab-btn {
    flex: 1;
    height: 36px;
    border: none;
    background: none;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}
.admin-tab-btn.active {
    background-color: var(--bg-card);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}
.admin-tab-content-panel {
    display: none;
    flex-direction: column;
    gap: 12px;
}
.admin-tab-content-panel.active {
    display: flex;
}
/* Data grid tables */
.admin-data-grid-wrapper {
    overflow-x: auto;
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-md);
    background-color: var(--bg-card);
    box-shadow: var(--shadow-sm);
}
.admin-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}
.admin-data-table th {
    background-color: var(--bg-pill);
    color: var(--text-muted);
    font-weight: 800;
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid var(--bg-border);
}
.admin-data-table td {
    padding: 10px;
    color: var(--text-main);
    border-bottom: 1px solid var(--bg-border);
    font-weight: 600;
    white-space: nowrap;
}
.admin-data-table tr:last-child td {
    border-bottom: none;
}
.status-pill {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}
.status-pill.success { background-color: rgba(34, 197, 94, 0.1); color: #22c55e; }
.status-pill.warning { background-color: rgba(234, 179, 8, 0.1); color: #eab308; }
.status-pill.danger { background-color: rgba(239, 68, 68, 0.1); color: #ef4444; }

/* Self-Healing diagnostics dashboard */
.self-healing-panel {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.03) 0%, rgba(249, 115, 22, 0.03) 100%);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}
.diagnostic-ping-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-md);
    padding: 10px 14px;
}
.ping-value-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-main);
}
.ping-badge-status {
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}
.ping-badge-status.excellent { background-color: rgba(34, 197, 94, 0.1); color: #22c55e; }
.ping-badge-status.warning { background-color: rgba(234, 179, 8, 0.1); color: #eab308; }
.ping-badge-status.danger { background-color: rgba(239, 68, 68, 0.1); color: #ef4444; }

/* Membership Sign-Up Auto-Generator Component */
.signup-card-elite {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}
.auto-generator-btn-wrap {
    display: flex;
    gap: 8px;
}
.btn-auto-gen {
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px dashed var(--primary);
    border-radius: var(--border-radius-md);
    padding: 0 12px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-auto-gen:active {
    transform: scale(0.95);
}
.gen-loading-spark {
    animation: spin 1s linear infinite;
}

.admin-crud-form {
    background-color: var(--bg-pill);
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-md);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}
.admin-action-btn-small {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    transition: all 0.1s;
}
.admin-action-btn-small.delete {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}
.admin-action-btn-small.edit {
    background-color: var(--primary-light);
    color: var(--primary);
}
.admin-action-btn-small:active {
    transform: scale(0.92);
}

/* ========================================== */
/* ELITE V4.0 SIBER / CYBER Tasarim Kurallari  */
/* ========================================== */

/* Pulsing Status Badges */
.status-badge-pulsing {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 8.5px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 0.5px;
}
.status-badge-pulsing.status-pending {
    background-color: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    animation: pulse-amber-glow 2s infinite;
}
.status-badge-pulsing.status-approved {
    background-color: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    animation: pulse-green-glow 2s infinite;
}
.status-badge-pulsing.status-rejected {
    background-color: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    animation: pulse-red-glow 2s infinite;
}

@keyframes pulse-amber-glow {
    0% { box-shadow: 0 0 2px rgba(245, 158, 11, 0.2); }
    50% { box-shadow: 0 0 8px rgba(245, 158, 11, 0.5); }
    100% { box-shadow: 0 0 2px rgba(245, 158, 11, 0.2); }
}
@keyframes pulse-green-glow {
    0% { box-shadow: 0 0 2px rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 8px rgba(16, 185, 129, 0.5); }
    100% { box-shadow: 0 0 2px rgba(16, 185, 129, 0.2); }
}
@keyframes pulse-red-glow {
    0% { box-shadow: 0 0 2px rgba(239, 68, 68, 0.2); }
    50% { box-shadow: 0 0 8px rgba(239, 68, 68, 0.5); }
    100% { box-shadow: 0 0 2px rgba(239, 68, 68, 0.2); }
}

/* Oscilloscope Wave Dashboard / Diagnostic elements */
.oscilloscope-wave-path {
    stroke-dasharray: 8 4;
    animation: oscilloscope-dash 15s linear infinite;
}
@keyframes oscilloscope-dash {
    to {
        stroke-dashoffset: -100;
    }
}

/* Diagnostics Neon Ping Meters */
.telemetry-ping-card {
    background: linear-gradient(135deg, #111827 0%, #030712 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.telemetry-ping-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.telemetry-ping-card:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, 0.3);
}

/* Support Representative & Chronograph kadran */
.chrono-glow-arc {
    filter: drop-shadow(0 0 4px rgba(6, 182, 212, 0.6));
    transition: stroke-dasharray 0.5s ease;
}
.chrono-pointer {
    transform-origin: 70px 70px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.support-avatar-neon-ring {
    animation: avatar-neon-pulse 2s infinite;
}
@keyframes avatar-neon-pulse {
    0% { filter: drop-shadow(0 0 2px #10b981); }
    50% { filter: drop-shadow(0 0 10px #10b981); }
    100% { filter: drop-shadow(0 0 2px #10b981); }
}

/* Yüzen, pulsing "Sipariş Bilgilendirme Balonu" */
.floating-info-bubble {
    animation: float-bubble 4s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
}
@keyframes float-bubble {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-6px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}

/* SSS Akordeon Yumuşak Geçiş Stilleri */
.faq-accordion-item {
    border: 1px solid var(--bg-border);
    border-radius: var(--border-radius-md);
    background-color: var(--bg-card);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-accordion-header {
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-weight: 700;
    font-size: 11.5px;
    color: var(--text-main);
}
.faq-accordion-header:hover {
    background-color: var(--bg-pill);
}
.faq-accordion-chevron {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}
.faq-accordion-item.open .faq-accordion-chevron {
    transform: rotate(180deg);
}
.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 14px;
    font-size: 10.5px;
    color: var(--text-muted);
    line-height: 1.5;
}
.faq-accordion-item.open .faq-accordion-content {
    max-height: 300px;
    padding-bottom: 12px;
}

/* Settings Gear rotation */
.settings-gear-btn svg {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.settings-gear-btn:hover svg {
    transform: rotate(120deg);
}

/* Pulse Neon Text */
@keyframes pulse-neon {
    0% { text-shadow: 0 0 5px rgba(6,182,212,0.4); }
    50% { text-shadow: 0 0 15px rgba(6,182,212,0.8); }
    100% { text-shadow: 0 0 5px rgba(6,182,212,0.4); }
}

/* ============================================================
   PREMIUM MENU HOVER OVERRIDES (legibility & premium feel)
   ============================================================ */

/* Bottom tab buttons hover */
.nav-tab-btn:hover {
    color: var(--text-main) !important;
}
.nav-tab-btn:hover .nav-tab-label {
    color: var(--text-main) !important;
}
body.theme-light .nav-tab-btn:hover {
    color: #000000 !important;
}
body.theme-light .nav-tab-btn:hover .nav-tab-label {
    color: #000000 !important;
}

/* Categories tab buttons hover */
.category-tab-btn:hover {
    color: var(--text-main) !important;
    background-color: var(--bg-border) !important;
}
body.theme-light .category-tab-btn:hover {
    color: #000000 !important;
    background-color: rgba(0, 0, 0, 0.08) !important;
}

/* Settings & Shortcut menu rows hover */
.settings-row:hover {
    background-color: rgba(255, 255, 255, 0.04) !important;
}
.settings-row:hover .settings-label,
.settings-row:hover span {
    color: var(--text-main) !important;
}
body.theme-light .settings-row:hover {
    background-color: rgba(0, 0, 0, 0.03) !important;
}
body.theme-light .settings-row:hover .settings-label,
body.theme-light .settings-row:hover span,
body.theme-light .settings-row:hover div,
body.theme-light .settings-row:hover svg {
    color: #000000 !important;
}

/* Admin panel sidebar & tab button hover */
.admin-tab-btn:hover {
    color: #00f2fe !important;
    background: rgba(255, 255, 255, 0.08) !important;
}
body.theme-light .admin-tab-btn:hover {
    color: #000000 !important;
    background: rgba(0, 0, 0, 0.06) !important;
}

/* ============================================================
   Shopier Animated Emojis (Card Wobble & Rocket Thrust)
   ============================================================ */

/* 1. Credit Card Selector Emoji Animation */
.shopier-emoji-animate {
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: shopierCardGlowPulse 2.2s infinite ease-in-out;
}

@keyframes shopierCardGlowPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.25) rotate(6deg); filter: drop-shadow(0 0 3px rgba(168, 85, 247, 0.5)); }
}

/* Wobble Card when parent button is active */
.tp-method-btn.active .shopier-emoji-animate {
    animation: activeCardWobble 1s infinite ease-in-out;
    filter: drop-shadow(0 0 6px #d946ef);
}

@keyframes activeCardWobble {
    0%, 100% { transform: scale(1.2) rotate(0deg); }
    25% { transform: scale(1.3) rotate(-12deg); }
    75% { transform: scale(1.3) rotate(12deg); }
}

/* 2. Rocket Submit Button Emoji Animation */
.shopier-rocket-animate {
    display: inline-block;
    margin-left: 4px;
    animation: shopierRocketFloat 1.8s infinite ease-in-out;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes shopierRocketFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) translateX(2px) scale(1.15); }
}

/* Takeoff effect when submit button is hovered */
.tp-send-btn:hover .shopier-rocket-animate {
    animation: rocketTakeoff 0.8s infinite ease-in-out;
}

@keyframes rocketTakeoff {
    0%, 100% { transform: translate(0, 0) scale(1.1); }
    50% { transform: translate(5px, -5px) scale(1.3); filter: drop-shadow(0 0 5px rgba(253, 224, 71, 0.8)); }
}


/* ============================================================
   PREMIUM CHATBOT & LIVE SUPPORT UI DESIGN SYSTEM
   ============================================================ */
.chatbot-wrap {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 180px);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(10, 14, 23, 0.6) 100%);
    border: 1.5px solid var(--bg-border);
    border-radius: 24px;
    margin: 15px;
    padding: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

body.theme-light .chatbot-wrap {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(243, 244, 246, 0.8) 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.chatbot-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid var(--bg-border);
    margin-bottom: 12px;
}

.chatbot-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.chatbot-header-title {
    font-size: 13.5px;
    font-weight: 850;
    color: var(--text-main);
    letter-spacing: -0.3px;
}

.chatbot-header-sub {
    font-size: 10.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
    scrollbar-width: none;
}

.chatbot-messages::-webkit-scrollbar {
    display: none;
}

.chatbot-msg {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.chatbot-msg.bot {
    align-self: flex-start;
}

.chatbot-msg.user {
    align-self: flex-end;
}

.chatbot-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
}

.chatbot-msg.bot .chatbot-bubble {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1.5px solid var(--bg-border);
    border-top-left-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.chatbot-msg.user .chatbot-bubble {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-top-right-radius: 4px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.chatbot-quick-btns {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 12px 0;
    margin-bottom: 4px;
}

.chatbot-quick-btns::-webkit-scrollbar {
    display: none;
}

.chatbot-quick {
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1.5px solid var(--bg-border);
    color: var(--text-main);
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 750;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-quick:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 242, 254, 0.15);
}

.chatbot-input-row {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
}

.chatbot-input {
    flex: 1;
    height: 44px;
    background: var(--bg-input);
    border: 1.5px solid var(--bg-border);
    border-radius: 14px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    outline: none;
    transition: all 0.2s ease;
}

.chatbot-input:focus {
    border-color: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.chatbot-send-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.2s;
}

.chatbot-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}


/* ============================================================
   PREMIUM AUTH & MEMBERSHIP LOGIN/REGISTER DESIGN SYSTEM
   ============================================================ */
.auth-hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin: 20px 0 24px 0;
}

.auth-hero-logo-ring {
    position: relative;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-hero-logo-inner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f2fe 0%, #4f46e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 242, 254, 0.35);
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.auth-hero-ring-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: authRingPulse 2s infinite ease-out;
    opacity: 0;
    z-index: 1;
}

@keyframes authRingPulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}

.auth-hero-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.auth-hero-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.auth-hero-sub {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

.auth-card-wrapper {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(10, 14, 23, 0.6) 100%);
    border: 1.5px solid var(--bg-border);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-sizing: border-box;
    width: calc(100% - 30px);
    margin: 0 auto 20px auto;
}

body.theme-light .auth-card-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(243, 244, 246, 0.8) 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.auth-tabs-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--bg-input);
    border: 1.5px solid var(--bg-border);
    border-radius: 16px;
    padding: 4px;
    margin-bottom: 20px;
}

.auth-tab-premium {
    background: transparent;
    border: none;
    color: var(--text-muted);
    border-radius: 12px;
    padding: 10px 0;
    font-size: 11.5px;
    font-weight: 750;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.auth-tab-premium.active {
    background: var(--bg-card);
    color: var(--primary);
    border: 1px solid var(--bg-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.auth-form-panel {
    display: none;
    flex-direction: column;
    gap: 14px;
}

.auth-form-panel.active {
    display: flex;
}

.auth-input-field {
    display: flex;
    align-items: center;
    background: var(--bg-input);
    border: 1.5px solid var(--bg-border);
    border-radius: 14px;
    height: 44px;
    padding: 0 14px;
    gap: 12px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    position: relative;
}

.auth-input-field:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

.auth-input-icon {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    font-weight: bold;
}

.auth-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-size: 12px;
    font-weight: 700;
    height: 100%;
}

.auth-input::placeholder {
    color: var(--text-muted);
}

.btn-auth-login {
    height: 46px;
    border-radius: 23px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
    font-weight: 850;
    font-size: 13.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
}

.btn-auth-login:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.btn-auth-arrow {
    font-size: 15px;
    transition: transform 0.2s ease;
}

.btn-auth-login:hover .btn-auth-arrow {
    transform: translateX(4px);
}

.auth-form-footer {
    text-align: center;
    font-size: 9.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 6px;
}

.auth-fields-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.auth-oto-btn {
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--primary);
    border-radius: 10px;
    height: 32px;
    padding: 0 10px;
    font-size: 10.5px;
    font-weight: 750;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}

.auth-oto-btn:hover {
    background: rgba(0, 242, 254, 0.25);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.btn-auth-signup {
    height: 46px;
    border-radius: 23px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
    font-weight: 850;
    font-size: 13.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
}

.btn-auth-signup:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.btn-auth-signup:hover .btn-auth-arrow {
    transform: translateX(4px);
}


/* ============================================================
   PREMIUM MONEY TRANSFER SUCCESS DETAILS & PAYMENT DONE BUTTON
   ============================================================ */
.tp-result-area {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.tp-ref-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(10, 14, 23, 0.7) 100%);
    border: 1.5px solid var(--bg-border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

body.theme-light .tp-ref-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(243, 244, 246, 0.9) 100%);
}

.tp-ref-tag {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.tp-ref-code-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    position: relative;
}

.tp-ref-code-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
    animation: refCodePulse 1.5s infinite;
}

@keyframes refCodePulse {
    0% { transform: scale(0.85); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(0.85); opacity: 1; }
}

.tp-ref-code-val {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: 1px;
    font-family: monospace;
    flex: 1;
}

.tp-ref-copy {
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--primary);
    border-radius: 10px;
    height: 32px;
    padding: 0 12px;
    font-size: 11px;
    font-weight: 750;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.tp-ref-copy:hover {
    background: rgba(0, 242, 254, 0.25);
    transform: scale(1.03);
}

.tp-ref-warn {
    font-size: 10px;
    color: #94a3b8;
    line-height: 1.4;
    border-top: 1px solid var(--bg-border);
    padding-top: 8px;
    margin-top: 4px;
}

.tp-ref-warn strong {
    color: #ef4444 !important;
}

.tp-txid-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-input);
    border: 1.5px solid var(--bg-border);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 11px;
    color: var(--text-main);
    font-weight: 700;
}

.tp-txid-strip strong {
    font-family: monospace;
    color: var(--text-muted);
}

.tp-payment-done-btn {
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.18) 100%);
    border: 1.5px solid rgba(16, 185, 129, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 12px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.05);
    box-sizing: border-box;
    width: 100%;
}

.tp-payment-done-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.25) 100%);
    border-color: rgba(16, 185, 129, 0.55);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.tp-done-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

.tp-done-icon svg {
    display: block;
}

.tp-done-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tp-done-main {
    font-size: 13px;
    font-weight: 850;
    color: #10b981;
}

.tp-done-sub {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
}


/* ============================================================
   PREMIUM HORIZONTAL APPLE TRANSIT-STYLE CARGO TIMELINE
   ============================================================ */
.horizontal-tracker {
    position: relative;
    width: 100%;
    padding: 24px 0 10px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.tracker-line-bg {
    position: absolute;
    top: 38px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: var(--bg-border);
    border-radius: 2px;
    z-index: 1;
}

.tracker-line-active {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #00f2fe 100%);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.tracker-nodes-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    z-index: 2;
    position: relative;
}

.tracker-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 60px;
    text-align: center;
}

.tracker-node-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-input);
    border: 2px solid var(--bg-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.tracker-node.done .tracker-node-circle {
    background: #10b981;
    border-color: #10b981;
    color: white;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.tracker-node.active .tracker-node-circle {
    background: linear-gradient(135deg, #00f2fe 0%, #4f46e5 100%);
    border-color: #00f2fe;
    color: white;
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
    animation: trackerActivePulse 2s infinite ease-in-out;
}

@keyframes trackerActivePulse {
    0%, 100% { transform: scale(1.15); box-shadow: 0 0 15px rgba(0, 242, 254, 0.5); }
    50% { transform: scale(1.22); box-shadow: 0 0 22px rgba(0, 242, 254, 0.8); }
}

.tracker-node-text {
    font-size: 9.5px;
    font-weight: 750;
    color: var(--text-muted);
    transition: color 0.3s;
    line-height: 1.2;
}

.tracker-node.done .tracker-node-text {
    color: #10b981;
}

.tracker-node.active .tracker-node-text {
    color: #00f2fe;
    font-weight: 900;
}


/* ============================================================
   PREMIUM CAMPAIGNS (KAMPANYALAR) UI DESIGN SYSTEM
   ============================================================ */
.camp-hero {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
    border: 1.5px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
    padding: 22px 18px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
}

body.theme-light .camp-hero {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.08) 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.camp-hero-badge {
    align-self: flex-start;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 8px;
    font-weight: 850;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.camp-hero-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.camp-hero-sub {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.4;
}

.camp-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.camp-card-premium {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(10, 14, 23, 0.6) 100%);
    border: 1.5px solid var(--bg-border);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

body.theme-light .camp-card-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(243, 244, 246, 0.8) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.camp-card-premium:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 242, 254, 0.15);
}

body.theme-light .camp-card-title {
    color: #0f172a !important;
}


/* ============================================================
   PREMIUM NOTIFICATIONS (BİLDİRİMLER) UI DESIGN SYSTEM
   ============================================================ */
.notify-card-item {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(10, 14, 23, 0.6) 100%);
    border: 1.5px solid var(--bg-border);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body.theme-light .notify-card-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(243, 244, 246, 0.8) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.notify-card-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.12);
}

.notify-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}

.notify-card-icon svg {
    display: block;
}

.notify-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notify-card-title {
    font-size: 13px;
    font-weight: 850;
    color: var(--text-main);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.notify-card-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.45;
}

.notify-card-time {
    font-size: 9px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2px;
}


/* ============================================================
   PREMIUM SYSTEM DIAGNOSTICS & DB SETTINGS UI DESIGN SYSTEM
   ============================================================ */
.diag-metrics-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    padding: 20px 20px 0 20px;
}

.diag-metric-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(10, 14, 23, 0.6) 100%);
    border: 1.5px solid var(--bg-border);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

body.theme-light .diag-metric-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(243, 244, 246, 0.8) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.diag-metric-top {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9.5px;
    color: var(--text-muted);
    font-weight: 750;
    text-transform: uppercase;
}

.ping-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.pulsing-green {
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: diagPulseGreen 1.5s infinite;
}

.pulsing-cyan {
    background: #06b6d4;
    box-shadow: 0 0 8px #06b6d4;
    animation: diagPulseCyan 1.5s infinite;
}

.pulsing-purple {
    background: #a855f7;
    box-shadow: 0 0 8px #a855f7;
    animation: diagPulsePurple 1.5s infinite;
}

@keyframes diagPulseGreen {
    0%, 100% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes diagPulseCyan {
    0%, 100% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes diagPulsePurple {
    0%, 100% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.diag-metric-val {
    font-size: 15px;
    font-weight: 900;
    color: var(--text-main);
}

.diag-metric-bar {
    width: 100%;
    height: 3px;
    background: var(--bg-border);
    border-radius: 1.5px;
    overflow: hidden;
}

.diag-metric-fill {
    height: 100%;
    border-radius: 1.5px;
}

.diag-oscillo-box {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(10, 14, 23, 0.6) 100%);
    border: 1.5px solid var(--bg-border);
    border-radius: 20px;
    padding: 16px;
    margin: 0 20px 20px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.theme-light .diag-oscillo-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(243, 244, 246, 0.8) 100%);
}

.diag-oscillo-label {
    font-size: 9.5px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.diag-ping-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11.5px;
    font-weight: 750;
    color: var(--text-main);
}

.ping-badge-status {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 10.5px;
    font-weight: 850;
}

.diag-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 20px 20px 20px;
}

.diag-action-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(10, 14, 23, 0.6) 100%);
    border: 1.5px solid var(--bg-border);
    border-radius: 20px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

body.theme-light .diag-action-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(243, 244, 246, 0.8) 100%);
}

.diag-action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.diag-action-primary:hover {
    border-color: #3b82f6;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.diag-action-danger:hover {
    border-color: #ef4444;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.15);
}

.diag-action-success:hover {
    border-color: #10b981;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.15);
}

.diag-action-icon-wrap {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.diag-action-icon-wrap svg {
    display: block;
}

.diag-action-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.diag-action-title {
    font-size: 13px;
    font-weight: 850;
    color: var(--text-main);
    letter-spacing: -0.3px;
}

.diag-action-sub {
    font-size: 10.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.diag-action-chevron {
    font-size: 11px;
    color: var(--text-muted);
}


/* ============================================================
   PASSWORD TOGGLE EYE ICON ANIMATION
   ============================================================ */
.password-toggle-btn {
    transition: color 0.2s ease;
}

.password-toggle-btn .eye-svg {
    display: block;
}

.password-toggle-btn .eye-slash {
    transition: stroke-dashoffset 0.3s ease;
    stroke-dasharray: 32;
    stroke-dashoffset: 0;
}

.password-toggle-btn.revealed .eye-slash {
    stroke-dashoffset: 32;
}

.password-toggle-btn .eye-pupil {
    transition: transform 0.3s ease, color 0.3s ease;
}

.password-toggle-btn.revealed .eye-pupil {
    transform: scale(1.15);
    color: #10b981 !important;
}

.password-toggle-btn.revealed svg {
    color: #10b981 !important;
}

/* ============================================================
   PREMIUM FLYING SHOPIER ROCKET ANIMATION
   ============================================================ */
@keyframes shopierRocket {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(4px, -4px) scale(1.18); }
    100% { transform: translate(0, 0) scale(1); }
}
.shopier-rocket-animate {
    display: inline-block;
    animation: shopierRocket 1.2s infinite ease-in-out;
}

/* ============================================================
   THICK EMERALD PROFILE SAVE BUTTON
   ============================================================ */
.profile-save-btn {
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    border: none;
    border-radius: 14px;
    font-size: 13.5px;
    font-weight: 850;
    letter-spacing: -0.3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
    outline: none;
}

.profile-save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    background: linear-gradient(135deg, #34d399 0%, #059669 100%) !important;
}

.profile-save-btn:active {
    transform: translateY(1px);
}

/* ============================================================
   HIGH-CONTRAST LIGHT MODE ADJUSTMENTS FOR MENUS
   ============================================================ */
body.theme-light .tp-method-selector {
    background: #f1f5f9 !important;
    border: 1.5px solid #cbd5e1 !important;
}
body.theme-light .tp-method-btn {
    color: #475569 !important;
}
body.theme-light .tp-method-btn.active {
    background: var(--primary) !important;
    color: white !important;
}

/* ============================================================
   PREMIUM LUCKY WHEEL (HEDİYE ÇARKI) STYLES
   ============================================================ */
.lucky-wheel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
}

.wheel-container {
    position: relative;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    padding: 8px;
    background: radial-gradient(circle at center, #0f2018 0%, #071410 100%);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3), inset 0 0 20px rgba(16, 185, 129, 0.08);
    border: 3px solid #10b981;
    box-sizing: border-box;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: transform 5s cubic-bezier(0.15, 0.95, 0.3, 1);
    transform: rotate(0deg);
}

.wheel-slice {
    position: absolute;
    width: 50%;
    height: 50%;
    left: 50%;
    top: 50%;
    transform-origin: 0% 0%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.slice-text {
    position: absolute;
    left: 20px;
    top: 25px;
    transform-origin: 0% 0%;
    font-size: 8px;
    font-weight: 800;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    white-space: nowrap;
    pointer-events: none;
    text-transform: uppercase;
}

.wheel-center-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 35% 35%, #34d399 0%, #10b981 45%, #059669 100%);
    border-radius: 50%;
    border: 3.5px solid #ffffff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4), 0 0 24px rgba(16, 185, 129, 0.5);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 9.5px;
    color: #ffffff;
    text-transform: uppercase;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.wheel-center-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(16, 185, 129, 0.7);
}

.wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 26px solid #10b981;
    filter: drop-shadow(0 2px 6px rgba(16,185,129,0.6));
    z-index: 15;
}

/* ============================================================
   PREMIUM JOIN RAFFLE (ÇEKİLİŞE KATIL) STYLES
   ============================================================ */
.raffle-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    box-sizing: border-box;
}

.raffle-rules-card {
    background: var(--bg-card);
    border: 1.5px solid var(--bg-border);
    border-radius: 18px;
    padding: 16px;
    box-sizing: border-box;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-input);
    border: 1px solid var(--bg-border);
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.task-item:hover {
    border-color: var(--primary);
    background: rgba(0, 242, 254, 0.02);
}

.task-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.task-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-main);
}

/* ============================================================
   PREMIUM CARGO QUERY PAGE DYNAMIC EFFECTS
   ============================================================ */
.cargo-vip-input-wrap {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.cargo-vip-input-wrap:focus-within {
    border-color: var(--primary) !important;
    background: rgba(0, 242, 254, 0.03) !important;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.25) !important;
    transform: translateY(-1px);
}

#cargoQueryBtn {
    position: relative;
    overflow: hidden;
}

#cargoQueryBtn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(30deg);
    transition: all 0.5s ease;
    opacity: 0;
}

#cargoQueryBtn:hover::after {
    left: 120%;
    opacity: 1;
    transition: all 0.5s ease;
}

#cargoQueryBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35) !important;
}

/* ============================================================
   ADMIN LOGIN PORTAL - Premium Design
   ============================================================ */
.admin-login-premium-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9) 0%, rgba(7, 12, 22, 0.97) 100%);
    border: 1.5px solid rgba(16, 185, 129, 0.2);
    border-radius: 28px;
    padding: 32px 24px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(16, 185, 129, 0.05);
    position: relative;
    overflow: hidden;
}
.admin-login-premium-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.admin-login-shield {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    margin-bottom: 4px;
}
.admin-login-title {
    font-size: 20px;
    font-weight: 900;
    color: #f1f5f9;
    text-align: center;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin: 0;
}
.admin-login-sub {
    font-size: 11px;
    color: #64748b;
    text-align: center;
    font-weight: 600;
    line-height: 1.5;
    max-width: 260px;
    margin: 0;
}
.admin-login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}
.admin-login-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.admin-login-field label {
    font-size: 10px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.admin-password-input {
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0 18px;
    font-size: 15px;
    color: #f1f5f9;
    outline: none;
    transition: all 0.25s ease;
    font-family: inherit;
    letter-spacing: 4px;
    box-sizing: border-box;
}
.admin-password-input:focus {
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(16, 185, 129, 0.04);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.08);
}
.admin-password-input::placeholder {
    letter-spacing: 0;
    color: #475569;
    font-size: 13px;
}
.btn-admin-login {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 18px;
    color: white;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.2px;
    margin-top: 4px;
}
.btn-admin-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.45);
}
.btn-admin-login:active {
    transform: translateY(0) scale(0.98);
}

/* ============================================================
   SIPARIS GECMISI (ORDER HISTORY) CARD STYLES - Premium
   ============================================================ */
.empty-orders-box {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card) !important;
    border: 1.5px solid var(--bg-border) !important;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

body.theme-light .empty-orders-box {
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

body.theme-light .empty-orders-box div {
    color: #0f172a !important;
}

body.theme-light .empty-orders-box div:last-child {
    color: #475569 !important;
}

.cargo-unified-card {
    background: var(--bg-card) !important;
    border: 1.5px solid var(--bg-border) !important;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.theme-light .cargo-unified-card {
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
}

body.theme-light .cargo-unified-card div {
    color: #334155 !important;
}

body.theme-light .cargo-unified-card strong {
    color: #0f172a !important;
}

