@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #d4af37;
    --primary-hover: #f4d03f;
    --primary-glow: rgba(212, 175, 55, 0.3);
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #12121a;
    --bg-card-hover: #18182a;
    --text-light: #ffffff;
    --text-muted: #8b8b9e;
    --border-color: rgba(212, 175, 55, 0.1);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--primary-glow);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(ellipse at top, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-hover);
}

.blesyum-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blesyum-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 3vw, 16px) clamp(24px, 5vw, 32px);
    border: none;
    border-radius: clamp(10px, 2vw, 12px);
    cursor: pointer;
    font-size: clamp(14px, 2.5vw, 15px);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.blesyum-btn-primary {
    background: var(--gradient-gold);
    background-size: 200% 200%;
    color: var(--bg-dark);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.blesyum-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.blesyum-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.blesyum-btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.blesyum-btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
}

.blesyum-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 28px;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.blesyum-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-md);
}

.blesyum-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 8px;
    background: rgba(15, 15, 26, 0.6);
    color: var(--text-light);
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-appearance: none;
    appearance: none;
}

.blesyum-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
    background: rgba(20, 20, 35, 0.8);
}

.blesyum-input:hover:not(:focus) {
    border-color: rgba(212, 175, 55, 0.3);
}

.blesyum-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.blesyum-form-group {
    margin-bottom: clamp(12px, 2vw, 16px);
}

.blesyum-form-grid .blesyum-form-group {
    margin-bottom: 0;
}

.blesyum-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-light);
    font-size: 13px;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.blesyum-form-group:focus-within label {
    color: var(--primary-color);
}

.blesyum-login-page {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 40px);
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.blesyum-login-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(0, 4%) rotate(0deg); }
    75% { transform: translate(-2%, 2%) rotate(-1deg); }
}

.blesyum-login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: min(1000px, 95vw);
    width: 100%;
    background: linear-gradient(165deg, rgba(22, 22, 37, 0.95) 0%, rgba(12, 12, 22, 0.98) 100%);
    border-radius: clamp(16px, 3vw, 24px);
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.12);
    animation: containerEntry 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.blesyum-login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 50%, transparent 100%);
}

@keyframes containerEntry {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.5); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(212, 175, 55, 0.3); }
    50% { border-color: rgba(212, 175, 55, 0.6); }
}

.blesyum-login-left {
    padding: clamp(32px, 6vw, 56px);
    background: transparent;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blesyum-login-right {
    padding: clamp(32px, 5vw, 48px);
    background: linear-gradient(180deg, rgba(8, 8, 16, 0.4) 0%, rgba(8, 8, 16, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-left: 1px solid rgba(212, 175, 55, 0.08);
}

.blesyum-login-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.blesyum-logo {
    font-size: clamp(26px, 5vw, 32px);
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: clamp(24px, 4vw, 40px);
    letter-spacing: -0.5px;
    animation: shimmer 4s linear infinite;
    display: inline-block;
}

.blesyum-login-title {
    font-size: clamp(20px, 4vw, 26px);
    margin-bottom: clamp(24px, 4vw, 32px);
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.3;
}

.blesyum-login-links {
    display: flex;
    justify-content: space-between;
    margin-top: clamp(20px, 4vw, 28px);
    font-size: clamp(13px, 2vw, 14px);
    gap: 16px;
}

.blesyum-login-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.blesyum-login-links a:hover {
    color: var(--primary-color);
}

.blesyum-lang-select {
    margin-top: clamp(24px, 4vw, 32px);
    padding-top: clamp(20px, 3vw, 24px);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.blesyum-lang-select label {
    display: block;
    margin-bottom: clamp(10px, 2vw, 12px);
    color: var(--text-muted);
    font-size: clamp(11px, 2vw, 12px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blesyum-lang-buttons {
    display: flex;
    gap: clamp(8px, 2vw, 10px);
    flex-wrap: wrap;
}

.blesyum-lang-btn {
    padding: clamp(8px, 2vw, 10px) clamp(14px, 3vw, 16px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: clamp(6px, 1.5vw, 8px);
    background: rgba(212, 175, 55, 0.04);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(12px, 2vw, 13px);
    font-weight: 500;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.blesyum-lang-btn:hover {
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.08);
}

.blesyum-lang-btn.active {
    border-color: var(--primary-color);
    color: var(--bg-dark);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
}

.blesyum-about-title {
    font-size: clamp(18px, 3vw, 20px);
    color: var(--primary-color);
    margin-bottom: clamp(12px, 2vw, 16px);
    font-weight: 600;
}

.blesyum-about-text {
    color: var(--text-muted);
    margin-bottom: clamp(20px, 4vw, 28px);
    line-height: 1.7;
    font-size: clamp(13px, 2vw, 14px);
}

.blesyum-features {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 16px);
}

.blesyum-feature {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 16px);
    padding: clamp(14px, 2.5vw, 18px);
    border-radius: clamp(10px, 2vw, 14px);
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: all 0.3s ease;
}

.blesyum-feature:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.15);
}

.blesyum-feature-icon {
    width: clamp(40px, 8vw, 48px);
    height: clamp(40px, 8vw, 48px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: clamp(10px, 2vw, 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 700;
    background: rgba(212, 175, 55, 0.08);
    transition: all 0.3s ease;
}

.blesyum-feature:hover .blesyum-feature-icon {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.blesyum-feature-text h4 {
    color: var(--text-light);
    margin-bottom: 4px;
    font-size: clamp(14px, 2vw, 15px);
    font-weight: 600;
}

.blesyum-feature-text p {
    color: var(--text-muted);
    font-size: clamp(12px, 2vw, 13px);
    line-height: 1.5;
}

.blesyum-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.blesyum-alert-error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
}

.blesyum-alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.blesyum-alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid var(--warning);
    color: var(--warning);
}

.blesyum-header {
    background: linear-gradient(180deg, rgba(12, 12, 20, 0.98) 0%, rgba(8, 8, 14, 0.95) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.blesyum-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.blesyum-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.blesyum-header .blesyum-logo {
    font-size: 22px;
    margin-bottom: 0;
}

.blesyum-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.blesyum-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 10px 16px;
    border-radius: 8px;
    position: relative;
}

.blesyum-nav a:hover,
.blesyum-nav a.active {
    color: var(--text-light);
    background: rgba(212, 175, 55, 0.08);
}

.blesyum-nav a.active {
    color: var(--primary-color);
}

.blesyum-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.blesyum-user-dropdown {
    position: relative;
}

.blesyum-user-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blesyum-user-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-color);
}

.blesyum-user-avatar {
    width: 36px;
    height: 36px;
    background: rgba(30, 30, 50, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blesyum-user-avatar svg {
    color: var(--primary-color);
}

.blesyum-user-chevron {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.blesyum-user-dropdown.open .blesyum-user-chevron {
    transform: rotate(180deg);
}

.blesyum-user-menu-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 260px;
    background: linear-gradient(165deg, rgba(22, 22, 37, 0.98) 0%, rgba(15, 15, 26, 0.99) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.blesyum-user-dropdown.open .blesyum-user-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.blesyum-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 4px;
}

.blesyum-user-avatar-lg {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blesyum-user-avatar-lg svg {
    color: var(--primary-color);
}

.blesyum-user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.blesyum-user-email {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.blesyum-user-divider {
    height: 1px;
    background: rgba(212, 175, 55, 0.1);
    margin: 4px 8px;
}

.blesyum-user-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blesyum-user-menu-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-light);
}

.blesyum-user-menu-item svg {
    color: var(--primary-color);
}

.blesyum-user-menu-logout {
    color: var(--danger);
}

.blesyum-user-menu-logout svg {
    color: var(--danger);
}

.blesyum-user-menu-logout:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.blesyum-lang-dropdown {
    position: relative;
}

.blesyum-lang-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blesyum-lang-trigger:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.blesyum-lang-trigger svg {
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.blesyum-lang-dropdown.open .blesyum-lang-trigger svg {
    transform: rotate(180deg);
}

.blesyum-lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: linear-gradient(165deg, rgba(22, 22, 37, 0.98) 0%, rgba(15, 15, 26, 0.99) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.blesyum-lang-dropdown.open .blesyum-lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.blesyum-lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-muted);
    font-size: 13px;
}

.blesyum-lang-option:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-light);
}

.blesyum-lang-option.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
}

.blesyum-lang-code {
    font-weight: 700;
    font-size: 11px;
    opacity: 0.7;
}

.blesyum-user-name {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.blesyum-btn-logout {
    padding: 8px 16px;
    font-size: 13px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blesyum-btn-logout:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: var(--bg-dark);
    border-color: transparent;
}

.blesyum-main {
    padding: 32px 0;
    min-height: calc(100vh - 120px);
}

.blesyum-footer {
    background: linear-gradient(180deg, rgba(8, 8, 14, 0.8) 0%, rgba(6, 6, 10, 0.95) 100%);
    padding: 24px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.06);
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

.blesyum-page-title {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-light);
    font-weight: 600;
}

.blesyum-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.blesyum-product-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.blesyum-product-card::before {
    display: none;
}

.blesyum-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.blesyum-product-card:hover::before {
    display: none;
}

.blesyum-product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--bg-darker);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.blesyum-product-info {
    padding: 20px;
}

.blesyum-product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

.blesyum-product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.blesyum-product-delivery {
    font-size: 14px;
    color: var(--text-muted);
}

.blesyum-table {
    width: 100%;
    border-collapse: collapse;
}

.blesyum-table th,
.blesyum-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.blesyum-table th {
    background-color: var(--bg-darker);
    font-weight: 600;
    color: var(--text-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blesyum-table tr {
    transition: all 0.2s ease;
}

.blesyum-table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.08);
    transform: scale(1.005);
}

.blesyum-status {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.blesyum-status:hover {
    transform: scale(1.05);
}

.blesyum-status-new {
    background-color: rgba(23, 162, 184, 0.2);
    color: var(--info);
}

.blesyum-status-processing {
    background-color: rgba(255, 193, 7, 0.2);
    color: var(--warning);
}

.blesyum-status-completed {
    background-color: rgba(40, 167, 69, 0.2);
    color: var(--success);
}

.blesyum-status-pending {
    background-color: rgba(255, 193, 7, 0.2);
    color: var(--warning);
}

.blesyum-status-approved {
    background-color: rgba(40, 167, 69, 0.2);
    color: var(--success);
}

.blesyum-status-rejected {
    background-color: rgba(220, 53, 69, 0.2);
    color: var(--danger);
}

.blesyum-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-darker);
    color: var(--text-light);
    font-size: 16px;
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.blesyum-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.blesyum-file-input {
    display: none;
}

.blesyum-file-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.blesyum-file-label:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.blesyum-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.blesyum-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.blesyum-checkbox span {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.blesyum-pending-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.blesyum-pending-content {
    max-width: 500px;
}

.blesyum-pending-icon {
    width: 100px;
    height: 100px;
    border: 3px solid var(--warning);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
    color: var(--warning);
}

.blesyum-pending-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.blesyum-pending-text {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .blesyum-login-container {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    
    .blesyum-login-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .blesyum-header-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    .blesyum-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .blesyum-products-grid {
        grid-template-columns: 1fr;
    }
    
    .blesyum-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .blesyum-login-page {
        padding: 16px;
        align-items: flex-start;
        padding-top: clamp(24px, 8vh, 60px);
    }
    
    .blesyum-login-container {
        border-radius: 20px;
    }
    
    .blesyum-login-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .blesyum-lang-buttons {
        justify-content: center;
    }
}

.blesyum-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-darker);
    color: var(--text-light);
    font-size: 16px;
    cursor: pointer;
}

.blesyum-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.blesyum-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.blesyum-stat-card {
    background: linear-gradient(165deg, rgba(18, 18, 30, 0.8) 0%, rgba(12, 12, 20, 0.9) 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blesyum-stat-card::before {
    display: none;
}

.blesyum-stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.blesyum-stat-card:hover::before {
    display: none;
}

.blesyum-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.blesyum-stat-label {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .blesyum-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blesyum-stats {
        grid-template-columns: 1fr;
    }
}

.blesyum-register-page {
    padding: clamp(12px, 3vw, 24px);
}

.blesyum-register-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: min(920px, 95vw);
    width: 100%;
    background: linear-gradient(165deg, rgba(22, 22, 37, 0.95) 0%, rgba(12, 12, 22, 0.98) 100%);
    border-radius: clamp(12px, 2vw, 20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.12);
    animation: containerEntry 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
}

.blesyum-register-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 50%, transparent 100%);
}

.blesyum-register-left {
    padding: clamp(20px, 4vw, 32px);
}

.blesyum-register-right {
    padding: clamp(20px, 4vw, 32px);
    background: linear-gradient(180deg, rgba(8, 8, 16, 0.4) 0%, rgba(8, 8, 16, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(212, 175, 55, 0.08);
}

.blesyum-register-form {
    margin-top: clamp(12px, 2vw, 16px);
}

.blesyum-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(8px, 1.5vw, 12px);
}

.blesyum-form-full {
    grid-column: span 2;
}

.blesyum-section-title {
    font-size: clamp(13px, 2vw, 14px);
    color: var(--primary-color);
    font-weight: 600;
    margin: clamp(14px, 2.5vw, 18px) 0 clamp(8px, 1.5vw, 12px);
    padding-bottom: clamp(6px, 1vw, 8px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.blesyum-error {
    display: block;
    color: var(--danger);
    font-size: 11px;
    margin-top: 4px;
}

.blesyum-consent-group {
    margin: clamp(14px, 2.5vw, 18px) 0;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vw, 10px);
}

.blesyum-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.blesyum-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 1px;
}

.blesyum-checkbox span {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.4;
}

.blesyum-btn-full {
    width: 100%;
}

.blesyum-form-footer {
    text-align: center;
    margin-top: clamp(12px, 2vw, 16px);
    font-size: 13px;
    color: var(--text-muted);
}

.blesyum-form-footer a {
    color: var(--primary-color);
    margin-left: 6px;
    font-weight: 500;
}

.blesyum-file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: clamp(10px, 2vw, 12px);
    border: 1px dashed rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.03);
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blesyum-file-label:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.06);
    color: var(--primary-color);
}

@media (max-width: 800px) {
    .blesyum-register-container {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    
    .blesyum-register-right {
        display: none;
    }
}

@media (max-width: 500px) {
    .blesyum-form-grid {
        grid-template-columns: 1fr;
    }
    
    .blesyum-form-full {
        grid-column: span 1;
    }
}

.blesyum-dashboard-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}

.blesyum-dashboard-section {
    background: linear-gradient(165deg, rgba(16, 16, 28, 0.6) 0%, rgba(10, 10, 18, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.blesyum-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.blesyum-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.blesyum-link-btn {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.blesyum-link-btn:hover {
    color: var(--primary-color);
}

.blesyum-products-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.blesyum-products-compact .blesyum-product-card {
    border-radius: 10px;
}

.blesyum-products-compact .blesyum-product-image {
    height: 120px;
}

.blesyum-products-compact .blesyum-product-info {
    padding: 12px;
}

.blesyum-products-compact .blesyum-product-name {
    font-size: 13px;
    margin-bottom: 4px;
}

.blesyum-products-compact .blesyum-product-price {
    font-size: 14px;
}

.blesyum-orders-card {
    min-height: 200px;
}

.blesyum-empty-state {
    text-align: center;
    padding: 32px 16px;
}

.blesyum-empty-state p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 14px;
}

.blesyum-order-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blesyum-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.blesyum-order-item:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: rgba(212, 175, 55, 0.12);
}

.blesyum-order-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.blesyum-order-number {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-light);
}

.blesyum-order-date {
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .blesyum-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .blesyum-products-compact {
        grid-template-columns: 1fr;
    }
}

/* ==================== KAPSAMLI MOBİL UYUMLULUK ==================== */

/* Mobil Header */
.blesyum-mobile-menu-btn {
    display: none;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .blesyum-mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .blesyum-header-inner {
        flex-direction: row;
        justify-content: space-between;
        height: auto;
        padding: 12px 0;
        gap: 0;
    }
    
    .blesyum-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #0f0f1a 0%, #0a0a12 100%);
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 8px;
        z-index: 1000;
        transition: left 0.3s ease;
        border-right: 1px solid rgba(212, 175, 55, 0.15);
        overflow-y: auto;
    }
    
    .blesyum-nav.open {
        left: 0;
    }
    
    .blesyum-nav a {
        width: 100%;
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 15px;
    }
    
    .blesyum-header-right {
        gap: 10px;
    }
    
    .blesyum-user-trigger {
        padding: 6px 10px;
    }
    
    .blesyum-user-avatar {
        width: 32px;
        height: 32px;
    }
    
    .blesyum-user-menu-dropdown {
        width: 240px;
        right: -10px;
    }
    
    .blesyum-mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
    }
    
    .blesyum-mobile-overlay.open {
        display: block;
    }
    
    .blesyum-container {
        padding: 0 16px;
    }
    
    .blesyum-main {
        padding: 20px 0;
    }
    
    .blesyum-page-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .blesyum-card {
        padding: 20px;
        border-radius: 14px;
    }
    
    /* Tablo Mobil */
    .blesyum-table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
    }
    
    .blesyum-table {
        min-width: 600px;
    }
    
    .blesyum-table th,
    .blesyum-table td {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    /* Mobil Kartlar */
    .blesyum-mobile-card {
        display: block;
    }
    
    .blesyum-desktop-table {
        display: none;
    }
    
    .blesyum-order-card-mobile {
        background: rgba(212, 175, 55, 0.03);
        border: 1px solid rgba(212, 175, 55, 0.1);
        border-radius: 14px;
        padding: 16px;
        margin-bottom: 12px;
    }
    
    .blesyum-order-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    }
    
    .blesyum-order-card-body {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .blesyum-order-card-row {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
    }
    
    .blesyum-order-card-label {
        color: var(--text-muted);
    }
    
    .blesyum-order-card-value {
        color: var(--text-light);
        font-weight: 500;
    }
    
    /* Ürün Grid Mobil */
    .blesyum-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .blesyum-product-image {
        height: 140px;
    }
    
    .blesyum-product-info {
        padding: 14px;
    }
    
    .blesyum-product-name {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .blesyum-product-price {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .blesyum-product-delivery {
        font-size: 12px;
    }
    
    /* Stats Mobil */
    .blesyum-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .blesyum-stat-card {
        padding: 16px 12px;
    }
    
    .blesyum-stat-value {
        font-size: 22px;
    }
    
    .blesyum-stat-label {
        font-size: 10px;
    }
    
    /* Form Mobil */
    .blesyum-form-group label {
        font-size: 12px;
    }
    
    .blesyum-input {
        padding: 12px 14px;
        font-size: 16px; /* iOS zoom engelle */
    }
    
    .blesyum-btn {
        padding: 14px 20px;
        font-size: 14px;
        width: 100%;
    }
    
    .blesyum-btn-sm {
        padding: 10px 16px;
        font-size: 13px;
        width: auto;
    }
    
    /* Footer Mobil */
    .blesyum-footer {
        padding: 20px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .blesyum-products-grid {
        grid-template-columns: 1fr;
    }
    
    .blesyum-stats {
        grid-template-columns: 1fr;
    }
    
    .blesyum-header .blesyum-logo {
        font-size: 18px;
    }
    
    .blesyum-user-menu-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .blesyum-alert {
        padding: 12px 14px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    .blesyum-status {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    /* Dashboard Mobil */
    .blesyum-dashboard-welcome {
        padding: 20px;
        border-radius: 16px;
    }
    
    .blesyum-dashboard-welcome h2 {
        font-size: 18px;
    }
    
    .blesyum-dashboard-welcome p {
        font-size: 13px;
    }
    
    .blesyum-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .blesyum-order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Ürün Detay Mobil */
@media (max-width: 768px) {
    .blesyum-product-detail {
        flex-direction: column;
    }
    
    .blesyum-product-detail-image {
        width: 100%;
        height: 250px;
    }
    
    .blesyum-product-detail-info {
        padding: 20px;
    }
    
    .blesyum-product-detail-title {
        font-size: 22px;
    }
    
    .blesyum-product-detail-price {
        font-size: 24px;
    }
}

/* Profil Sayfası Mobil */
@media (max-width: 768px) {
    .blesyum-profile-grid {
        grid-template-columns: 1fr;
    }
    
    .blesyum-profile-sidebar {
        order: -1;
    }
}

/* İletişim Sayfası Mobil */
@media (max-width: 768px) {
    .blesyum-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Touch Optimizasyonları */
@media (hover: none) and (pointer: coarse) {
    .blesyum-btn:active {
        transform: scale(0.98);
    }
    
    .blesyum-product-card:active {
        transform: scale(0.98);
    }
    
    .blesyum-nav a:active {
        background: rgba(212, 175, 55, 0.15);
    }
}

/* Safe Area (iPhone X+) */
@supports (padding: max(0px)) {
    .blesyum-header {
        padding-top: max(0px, env(safe-area-inset-top));
    }
    
    .blesyum-footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
}
