:root {
    --bg-dark: #0f0f12;
    --text-primary: #ffffff;
    --text-secondary: #c4c4cc; /* Increased contrast from #a1a1aa */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 20px;
    --accent-glow: radial-gradient(circle at 50% 50%, rgba(76, 29, 149, 0.15), transparent 60%);
    --hover-bg: rgba(255, 255, 255, 0.08);
    --form-bg: rgba(0, 0, 0, 0.2);
    --input-border: rgba(255, 255, 255, 0.1);
}

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

html, body {
    background: radial-gradient(circle at top left, #1d1035 0%, #050510 38%, #020617 100%);
    overscroll-behavior-y: none;
}

body {
    background: transparent;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,"Noto Sans","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol",sans-serif;
    color: var(--text-primary);
    min-height: 100dvh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    padding: 20px 0;
    padding-top: max(20px, env(safe-area-inset-top));
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.mobile-only-btn {
    display: none;
}

.sticky-mobile-footer {
    display: none;
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    /* Base color moved here */
    background-image:
        radial-gradient(circle at 10% 20%, rgba(60, 20, 100, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(30, 50, 120, 0.2) 0%, transparent 40%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 680px;
    padding: 20px;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    margin: 0 auto;
    /* Centers perfectly and handles scroll safely */
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    /* Ensure content is above background */
    /* min-height removed for vertical centering */
}

.inline-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 20px;
}
.inline-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    transition: all 0.2s ease;
}
.inline-item:first-child {
    margin-left: 0;
}
.inline-item i { font-size: 1.1rem; }
.inline-item:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.14);
}
.inline-item.active {
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.20) 0%, rgba(59, 130, 246, 0.25) 100%);
    border-color: rgba(147, 51, 234, 0.35);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.25);
}

@media (max-width: 600px) {
    .inline-nav {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        justify-content: stretch;
        padding: 8px;
        overflow-x: visible;
        -webkit-overflow-scrolling: auto;
    }
    .inline-item {
        font-size: 0.7rem;
        padding: 4px 2px;
        justify-content: center;
        gap: 6px;
    }
}
.inline-chips {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0;
    margin-bottom: 12px;
}

.inline-chips.products-inline-chips {
    justify-content: center;
}

.inline-chips.products-inline-chips .inline-chip {
    max-width: 180px;
}

.inline-chips.products-inline-chips .inline-chip .count {
    background: rgba(255, 255, 255, 0.08);
}

/* Mobilde genel ortalama */
@media (max-width: 600px) {
    .inline-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
        padding: 6px 12px;
        overflow-x: hidden;
    }
    .inline-chip {
        flex: 1 1 auto;
        width: auto;
        min-width: calc(50% - 6px);
        justify-content: center;
        font-size: 0.65rem;
        padding: 4px 6px;
        gap: 4px;
    }
    .inline-chip i {
        font-size: 0.9rem;
    }
}
.inline-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    flex: 0 0 auto;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}
.inline-chip .count {
    padding: 2px 6px;
    border-radius: 10px;
    background: rgba(0,0,0,0.2);
    color: rgba(255,255,255,0.85);
    font-size: 0.7rem;
}
.inline-chip:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.14);
}
@media (max-width: 600px) {
    .inline-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
        padding: 6px 12px;
        overflow-x: hidden;
    }
    .inline-chip {
        flex: 1 1 auto;
        width: auto;
        min-width: calc(50% - 6px);
        justify-content: center;
        font-size: 0.65rem;
        padding: 4px 6px;
        gap: 4px;
    }
    .inline-chip i {
        font-size: 0.9rem;
    }
}
.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 220px;
    background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-right: 1px solid rgba(255,255,255,0.10);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.35);
    z-index: 2;
}
.side-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}
.side-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    opacity: 0.9;
}
.side-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.side-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    transition: all 0.2s ease;
}
.side-item i {
    font-size: 1.2rem;
}
.side-item:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.16);
}
.side-item.active {
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(167,139,250,0.16) 0%, rgba(59,130,246,0.12) 100%);
    border-color: rgba(255,255,255,0.18);
}
.side-categories {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.side-chip {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    transition: all 0.2s ease;
}
.side-chip .count {
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(0,0,0,0.2);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
}
.side-chip:hover {
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.18);
}
/* Glass Card Main Container */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 48px;
    padding: 30px 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

/* Profile Header */
.profile-header {
    display: flex;
    flex-direction: column;
    /* Stack vertically for centered layout */
    align-items: center;
    /* Center horizontally */
    text-align: center;
    /* Center text */
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Separator */
    padding-bottom: 20px; /* Space for separator */
}

.avatar-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: visible;
    /* Changed to visible for indicator */
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    position: relative;
    /* For absolute positioning of indicator */
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    /* Re-apply radius here */
}

.online-indicator {
    position: absolute;
    bottom: -10px;
    /* Adjusted for larger size */
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: 12px;
    /* Enlarge as requested */
    height: 12px;
    /* Enlarge as requested */
    background-color: #4ade80;
    /* Green */
    border: 3px solid #18181b;
    /* Thicker border */
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.7);
    animation: pulse-green 1.2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.9);
    }

    50% {
        transform: translateX(-50%) scale(1.15);
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0.25);
    }

    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.profile-info {
    width: 100%;
}

.profile-info h1,
.profile-info .profile-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    display: block;
}

.profile-info .title {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.profile-info .location {
    font-style: normal;
    /* Changed from italic */
    opacity: 0.8;
    display: inline;
}

/* Profile Action Buttons (Phone & WhatsApp) */
.profile-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
    /* Center align */
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    /* Smaller padding */
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    /* Smaller font */
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    flex: 0 1 auto;
    /* Don't stretch */
    min-width: 100px;
}

.phone-btn {
    background: #3b82f6;
    /* Solid Blue */
    color: #ffffff;
    border-color: #2563eb;
}

.phone-btn:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.whatsapp-btn {
    background: #22c55e;
    /* Solid Green */
    color: #ffffff;
    border-color: #16a34a;
}

.whatsapp-btn:hover {
    background: #16a34a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.email-btn {
    background: #eab308;
    /* Solid Yellow */
    color: #ffffff;
    border-color: #ca8a04;
}

.email-btn:hover {
    background: #ca8a04;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.4);
}

.fab-btn.email:hover {
    background: rgba(234, 179, 8, 0.2);
    color: #facc15;
    border-color: #facc15;
}

.profile-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    /* Reduced margin */
    text-align: center;
    /* Centered bio */
    padding: 0 10px;
    /* Restored padding for centered text */
}

/* Overlay Menu */
.overlay-trigger {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}
.menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(139,92,246,0.25) 0%, rgba(59,130,246,0.20) 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.16);
    cursor: pointer;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.menu-toggle:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    z-index: 1000;
    padding: 24px;
}
.nav-overlay.open {
    display: block;
}
.overlay-inner {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(24,24,27,0.7);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    padding: 24px;
}
.overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.overlay-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    opacity: 0.9;
}
.overlay-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
    color: var(--text-secondary);
    cursor: pointer;
}
.overlay-close:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.08);
}
.overlay-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}
.overlay-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 16px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.12);
    background: radial-gradient(120px 120px at 20% 20%, rgba(139,92,246,0.18), transparent 50%), radial-gradient(120px 120px at 80% 80%, rgba(59,130,246,0.18), transparent 50%), rgba(255,255,255,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.overlay-item i {
    font-size: 1.4rem;
}
.overlay-item span {
    font-weight: 700;
}
.overlay-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
    border-color: rgba(255,255,255,0.2);
}
.overlay-categories {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 6px 2px;
}
.overlay-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 9999px;
    text-decoration: none;
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    flex: 0 0 auto;
}
.overlay-chip .count {
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(0,0,0,0.2);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
}
.overlay-chip:hover {
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.25);
}
body.overlay-open {
    overflow: hidden;
}
@media (max-width: 600px) {
    .overlay-inner {
        padding: 16px;
    }
    .overlay-grid {
        grid-template-columns: 1fr;
    }
}
/* Navigation Tabs - Floating Glass Dock */
.tabs-nav {
    display: flex;
    justify-content: space-between;
    /* Evenly spaced */
    gap: 8px;
    margin-bottom: 25px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    /* Subtle backdrop */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.tab-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* Icon Top, Text Bottom */
    justify-content: center;
    align-items: center;
    padding: 10px 5px;
    background: transparent;
    border: none;
    border-radius: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tab-btn i {
    font-size: 1.4rem;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.tab-btn span {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-btn.active i {
    color: #a78bfa;
    /* Accent color for active icon */
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(167, 139, 250, 0.4);
}

.tab-btn.active span {
    opacity: 1;
    font-weight: 600;
}

/* Content Area */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    /* Centered again */
    padding: 15px 20px;
    /* Compact padding */
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    margin-bottom: 20px;
}

.welcome-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

/* Linktree Style Links (Legacy / Optional) */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.link-item:hover {
    background: var(--hover-bg);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.arrow-icon {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Products Grid (Gumroad Style) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    background: var(--hover-bg);
}

.product-image {
    width: 100%;
    height: 140px;
    /* Increased height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2a2a2a;
    /* Fallback color */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    /* Consistency improvement */
    aspect-ratio: 16 / 9;
}

.product-details {
    padding: 12px 12px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.product-details h3 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-details .price {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 600;
}

.product-edit-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 9999px;
    border: 1px solid var(--glass-border);
    background: rgba(15,23,42,0.9);
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.product-edit-btn:hover {
    background: rgba(15,23,42,1);
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.3);
}

.placeholder-text {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px 0;
}

/* Contact Form */
.contact-form-container {
    padding: 0;
}

.contact-form-container h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* Contact Header (Above Buttons) */
.contact-header {
    text-align: center;
    margin-bottom: 12px;
}

.contact-header-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.contact-header-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.8;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 24px;
}

.contact-form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.contact-form-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.8;
}

.ads-greeting {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    margin: 0 0 14px 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.16), rgba(139, 92, 246, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.35);
    animation: greetFadeIn 0.5s ease;
}
.ads-greeting-content {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 100%;
    margin: 0 auto;
}
.ads-greeting-icon {
    font-size: 1.7rem;
    color: #ffffff;
    flex-shrink: 0;
}
.ads-greeting-divider {
    width: 2px;
    height: 44px;
    background: rgba(255, 255, 255, 0.75);
    flex-shrink: 0;
}
.ads-greeting-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}
.ads-greeting-text .dinamik-metin {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}
.ads-greeting-subtitle {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.25;
}
.light-mode .ads-greeting {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.18), rgba(139, 92, 246, 0.13));
    border-color: rgba(255, 255, 255, 0.45);
}
.light-mode .ads-greeting-text .dinamik-metin {
    color: #ffffff;
}
.light-mode .ads-greeting-icon {
    color: #ffffff;
}
.light-mode .ads-greeting-divider {
    background: rgba(255, 255, 255, 0.75);
}
@keyframes greetFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ads Dynamic Content - Kompakt Tasarım */
.ads-service-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 14px 0;
}
.ads-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}
.ads-box-icon {
    font-size: 1.2rem;
    color: #a78bfa;
    margin-bottom: 5px;
}
.ads-box-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 5px 0;
}
.ads-box-text {
    font-size: 0.68rem;
    line-height: 1.35;
    color: var(--text-secondary);
    margin: 0;
}

.ads-process {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px;
    margin: 14px 0;
}
.ads-process-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    text-align: center;
}
.ads-steps {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.ads-step {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.ads-step-number {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: #c4b5fd;
}
.ads-step-content h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 2px 0;
}
.ads-step-content p {
    font-size: 0.68rem;
    line-height: 1.35;
    color: var(--text-secondary);
    margin: 0;
}

.ads-faq {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px;
    margin: 14px 0;
}
.ads-faq-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    text-align: center;
}
.ads-faq-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    margin-bottom: 5px;
    overflow: hidden;
}
.ads-faq-item:last-child {
    margin-bottom: 0;
}
.ads-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: background 0.2s ease;
}
.ads-faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}
.ads-faq-question i {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: transform 0.2s ease;
}
.ads-faq-item.open .ads-faq-question i {
    transform: rotate(180deg);
    color: #a78bfa;
}
.ads-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 10px;
    font-size: 0.68rem;
    line-height: 1.45;
    color: var(--text-secondary);
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.25s ease;
}
.ads-faq-item.open .ads-faq-answer {
    max-height: 200px;
    opacity: 0.85;
    padding: 0 10px 8px 10px;
}

.ads-badges {
    display: flex;
    gap: 6px;
    margin: 0 0 12px 0;
    flex-wrap: wrap;
}
.ads-badge {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 8px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #c4b5fd;
    text-align: center;
}
.ads-badge i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Light Mode */
.light-mode .ads-box {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}
.light-mode .ads-box-icon {
    color: #7c3aed;
}
.light-mode .ads-process,
.light-mode .ads-faq {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}
.light-mode .ads-step-number {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.15), rgba(59, 130, 246, 0.1));
    border-color: rgba(109, 40, 217, 0.25);
    color: #6d28d9;
}
.light-mode .ads-faq-item {
    border-color: rgba(0, 0, 0, 0.06);
}
.light-mode .ads-faq-item.open .ads-faq-question i {
    color: #7c3aed;
}
.light-mode .ads-badge {
    background: rgba(109, 40, 217, 0.08);
    border-color: rgba(109, 40, 217, 0.2);
    color: #6d28d9;
}

/* Responsive - Mobile */
@media (max-width: 600px) {
    .ads-service-boxes {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .ads-box {
        padding: 8px;
    }
    .ads-box-icon {
        font-size: 1.1rem;
    }
    .ads-box-title {
        font-size: 0.75rem;
    }
    .ads-box-text {
        font-size: 0.65rem;
    }
    .ads-greeting {
        padding: 12px 14px;
        gap: 10px;
    }
    .ads-greeting-icon {
        font-size: 1.45rem;
    }
    .ads-greeting-divider {
        height: 36px;
    }
    .ads-greeting-text .dinamik-metin {
        font-size: 1.02rem;
    }
    .ads-greeting-subtitle {
        font-size: 0.64rem;
    }
    .ads-service-boxes {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .ads-box {
        padding: 8px;
    }
    .ads-box-icon {
        font-size: 1.1rem;
    }
    .ads-box-title {
        font-size: 0.75rem;
    }
    .ads-box-text {
        font-size: 0.65rem;
    }
    .ads-badges {
        flex-direction: column;
    }
    .ads-badge {
        flex: none;
    }
}

/* Contact Services - inline-chips class'ını kullanıyor, sadece ek stiller */
.cs-chip.active {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.4);
    color: #c4b5fd;
}
.cs-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin-bottom 0.25s ease;
    margin-bottom: 0;
}
.cs-panel.open {
    max-height: 400px;
    opacity: 1;
    margin-bottom: 12px;
}
.cs-panel-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    margin-bottom: 6px;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.2s ease;
}
.cs-panel-item:last-child { margin-bottom: 0; }
.cs-panel-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}
.cs-panel-item.open {
    border-color: rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.03);
}
.cs-panel-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
}
.cs-panel-item-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}
.cs-panel-item-icon {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.4;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.cs-panel-item.open .cs-panel-item-icon {
    transform: rotate(90deg);
    color: #a78bfa;
    opacity: 0.8;
}
.cs-panel-item-desc {
    visibility: hidden;
    opacity: 0;
    height: 0;
    padding: 0 12px;
    font-size: 0.76rem;
    line-height: 1.55;
    color: var(--text-secondary);
    transition: visibility 0s linear 0.3s, opacity 0.25s ease, height 0.3s ease, padding 0.25s ease;
}
.cs-panel-item.open .cs-panel-item-desc {
    visibility: visible;
    opacity: 0.85;
    height: auto;
    padding: 0 12px 10px 12px;
    transition: visibility 0s linear 0s, opacity 0.25s ease, height 0.3s ease, padding 0.25s ease;
}
.contact-services-edit-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    border-radius: 9999px;
    border: 1px solid var(--glass-border);
    background: rgba(15, 23, 42, 0.9);
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    font-size: 0.75rem;
}
.contact-services-edit-btn:hover {
    background: rgba(15, 23, 42, 1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.3);
}
/* Light mode */
.light-mode .cs-chip.active {
    background: rgba(109, 40, 217, 0.1);
    border-color: rgba(109, 40, 217, 0.35);
    color: #6d28d9;
}
.light-mode .cs-panel-item {
    border-color: rgba(0, 0, 0, 0.06);
}
.light-mode .cs-panel-item.open {
    border-color: rgba(109, 40, 217, 0.15);
    background: rgba(109, 40, 217, 0.02);
}
.light-mode .cs-panel-item.open .cs-panel-item-icon {
    color: #7c3aed;
}
.light-mode .contact-services-edit-btn {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
    color: #666;
}
.light-mode .contact-services-edit-btn:hover {
    color: #333;
    border-color: rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px;
    background: var(--form-bg);
    border: 1px solid var(--input-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    padding: 14px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    font-size: 1rem;
}

.contact-form .submit-btn {
    width: 100%;
}

.submit-btn:hover {
    opacity: 0.9;
}

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

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

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

.success-modal {
    background: rgba(24, 24, 27, 0.95);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.show .success-modal {
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4ade80;
    font-size: 40px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    animation: success-pulse 2s infinite;
}

@keyframes success-pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.success-desc {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-close-btn {
    background: #4ade80;
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.modal-close-btn:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}

.editor-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.product-editor {
    width: 100%;
    max-width: 600px;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.product-editor::-webkit-scrollbar {
    width: 6px;
}

.product-editor::-webkit-scrollbar-track {
    background: transparent;
}

.product-editor::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.editor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.editor-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.editor-close {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    border: 1px solid var(--glass-border);
    background: rgba(24,24,27,0.95);
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
}

.editor-close:hover {
    background: rgba(39,39,42,1);
    color: var(--text-primary);
}

.editor-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.editor-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.editor-input,
.editor-textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--input-border);
    background: var(--form-bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.editor-textarea {
    min-height: 120px;
    resize: vertical;
}

.editor-input:focus,
.editor-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.editor-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.editor-save {
    padding: 10px 16px;
    border-radius: 9999px;
    border: none;
    background: #22c55e;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.editor-save:hover {
    background: #16a34a;
}

@keyframes blink-pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(0.98); box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); }
    100% { opacity: 1; transform: scale(1); }
}

    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.fab-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.fab-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    border-color: #25D366;
}

.fab-btn.phone:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border-color: #3b82f6;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: #18181b;
    border: 1px solid var(--glass-border);
    width: 100%;
    max-width: 500px;
    position: relative;
    padding: 30px;
    border-radius: 24px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-secondary);
}

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

.modal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.modal-body h2 {
    margin-bottom: 10px;
}

.modal-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 15px;
}

.modal-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 14px;
    background: #ffffff;
    color: #000000;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cta-button:hover {
    opacity: 0.9;
}

/* Skeleton Loading removed by user request */
/* Responsive & Mobile Optimization */
@media (max-width: 600px) {
    body {
        /* On mobile, still keep center alignment but ensure padding/safe area */
        justify-content: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .container {
        padding: 0 16px;
        margin: 0 auto;
        /* No margin-bottom override needed */
        max-width: 100%;
        /* margin-left: 0 removed */
    }
    .side-nav {
        height: 64px;
        width: 100%;
        left: 0;
        bottom: 0;
        top: auto;
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.10);
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 8px 12px;
    }
    .side-header { display: none; }
    .side-menu {
        flex-direction: row;
        gap: 6px;
    }
    .side-item span { display: none; }
    .side-item {
        padding: 8px 10px;
    }
    .side-categories { display: none; }

    .glass-card {
        padding: 20px;
        border-radius: 32px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        min-height: auto;
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        margin-bottom: 20px;
    }

    /* Tabs grid optimization (2x2 symmetrical) */
    .tabs-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        justify-content: stretch;
        padding-left: 5px;
        padding-right: 5px;
        overflow-x: visible;
        /* Disable horizontal scroll */
        -webkit-overflow-scrolling: auto;
    }

    .tab-btn {
        flex: 1;
        width: 100%;
        font-size: 0.9rem;
        justify-content: center;
        padding: 10px 4px;
    }

    .floating-actions {
        bottom: 25px;
        right: 20px;
        bottom: calc(25px + env(safe-area-inset-bottom));
        /* Safe area support */
    }

    /* Products Grid optimization */
    .products-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile for larger cards */
    }

    .product-image {
        height: 160px;
    }
}

/* Sticky CTA - Logic moved to .mobile-sticky-actions-wrapper (approx line 3260) */
@media (max-width: 768px) {
    /* Hide content-level desktop actions on mobile */
    .desktop-actions-wrapper {
        display: none !important;
    }
    /* .detail-actions styling is now handled by the wrapper's context or default styles */
    
    .product-detail-view {
        padding-bottom: 20px;
    }

    .detail-btn {
        flex: 1;
        padding: 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .product-details h3 {
        font-size: 1rem;
    }

    /* Fix Footer Mobile Alignment */
    .site-footer {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        width: 100%;
        max-width: 100%;
        align-items: center;
        /* Ensure items are centered */
    }
}

/* Sub Nav Wrapper */
.sub-nav-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    padding: 0 40px;
    /* Space for arrows */
    display: flex;
    align-items: center;
}

.sub-nav {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 5px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    width: 100%;
    white-space: nowrap;
    justify-content: center;
    mask-image: linear-gradient(to right, black 0%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, black 85%, transparent 100%);
}

.sub-nav::-webkit-scrollbar {
    display: none;
}

.sub-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    /* Pill shape */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.sub-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.sub-nav-item.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.25);
}

.glass-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.06) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.35);
}

.glass-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
}


 

.glass-tab {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 12px;
    border-radius: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease;
}

.glass-tab:hover {
    color: var(--text-primary);
    transform: translateY(-1px);
}

.glass-tab.active {
    color: var(--text-primary);
    font-weight: 600;
}

.glass-nav .sub-nav {
    display: none;
    padding: 6px 2px;
}

.glass-nav.products-active .sub-nav {
    display: flex;
    animation: fadeIn 0.25s ease;
}

.glass-tab i {
    font-size: 1.1rem;
}

.glass-nav.products-active .sub-nav-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-secondary);
}

.glass-nav.products-active .sub-nav-item:hover {
    background: rgba(255,255,255,0.14);
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.22);
}

/* Major Nav Tiles */
.pill-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.04), 0 12px 32px rgba(0,0,0,0.35);
}
.pill-left {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
}
.pill-left i { font-size: 1.2rem; }
.pill-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    padding: 0 6px;
}
.pill-item {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 10px;
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease;
}
.pill-item:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.04);
}
.pill-item.active {
    color: var(--text-primary);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
}
.pill-cta {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    box-shadow: 0 10px 24px rgba(109,40,217,0.35);
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
}
.pill-cta:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    box-shadow: 0 14px 34px rgba(109,40,217,0.45);
}
@media (max-width: 600px) {
    .pill-nav {
        padding: 8px;
        gap: 8px;
    }
    .pill-menu {
        gap: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .pill-item {
        padding: 8px 8px;
        font-size: 0.9rem;
        flex: 0 0 auto;
    }
    .pill-left { width: 36px; height: 36px; }
    .pill-left i { font-size: 1.1rem; }
    .pill-cta { padding: 9px 12px; }
}

@media (max-width: 600px) {
    .glass-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .glass-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .sub-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        mask-image: linear-gradient(to right, black 0%, black 85%, transparent 100%);
    }
    .sub-nav .sub-nav-item {
        flex: 0 0 auto;
    }
}
/* Mega Nav (Combined Main + Sub navigation) */
.mega-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.mega-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.mega-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.mega-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.mega-tab.active {
    background: rgba(255, 255, 255, 0.10);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.sub-nav-item .count {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.sub-nav-item:hover .count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 20;
    transition: all 0.2s ease;
    backdrop-filter: blur(5px);
}

.nav-arrow:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-arrow.left-arrow {
    left: 0;
}

.nav-arrow.right-arrow {
    right: 0;
}

.category-row-wrapper {
    position: relative;
    /* CRITICAL: Anchors the absolute arrows */
    width: 100%;
    margin-bottom: 22px;
}

.category-title {
    margin-bottom: 15px;
    padding-left: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center !important;
    display: block;
    width: 100%;
}/* Restoring Detail View Styles */

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 9999px;
    border: 1px solid var(--glass-border);
    background: rgba(24,24,27,0.9);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.category-add-btn:hover {
    background: rgba(39,39,42,1);
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.3);
}

/* Restoring Detail View Styles */
/* .back-btn removed as per request */

/* ... existing styles ... */

.product-detail-view {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.detail-view .detail-container,
.legal-content-page {
    width: 100%;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.detail-view .detail-container {
    display: flex;
    flex-direction: column;
}

.detail-content {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.detail-image {
    width: 100%;
    height: 240px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    border-radius: 16px;
    background: #2a2a2a;
    margin-bottom: 8px;
    order: 1 !important;
}

.detail-header {
    margin-bottom: 0;
    order: 2 !important;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.detail-header h1,
.detail-header h2,
#detail-title,
#blog-detail-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-top: 20px;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.detail-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 12px 0;
    opacity: 0.9;
}

.detail-separator {
    display: block !important;
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    background: linear-gradient(90deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.02) 100%);
    margin: 12px 0 12px 0;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
}

.detail-keywords {
    order: 6 !important;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    justify-content: flex-start; /* Changed from center to flex-start to prevent clipping */
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    padding-left: 0;
    padding-right: 0;
}

.detail-keywords::-webkit-scrollbar {
    display: none;
}

.related-posts-section {
    order: 7 !important;
    margin-top: 32px;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 32px;
}
.related-posts-section h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}
.related-post-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.related-post-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.25);
}
.related-post-image {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-color: rgba(255,255,255,0.04);
}
.related-post-title {
    padding: 10px 12px;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.35;
}

.keyword-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1;
    opacity: 0.5;
    transition: opacity 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}

.keyword-tag:hover {
    opacity: 1;
}

/* Modern Action Buttons (Product Page) */
.detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    order: 3 !important;
    z-index: 10;
}

/* Product and Blog page specific fixes */
#blog-detail-view .detail-header, #product-detail-view .detail-header {
    margin-bottom: 0 !important;
}
#blog-detail-view #blog-detail-subtitle, #product-detail-view #detail-subtitle {
    margin-bottom: 12px !important;
}
#blog-detail-view #blog-detail-subtitle:empty, #product-detail-view #detail-subtitle:empty {
    display: none !important;
}
#blog-detail-view .detail-separator, #product-detail-view .detail-separator {
    margin: 12px 0 12px 0 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.15) !important;
}
.light-mode #blog-detail-view .detail-separator,
.light-mode #product-detail-view .detail-separator {
    background: rgba(0, 0, 0, 0.12) !important;
}
#blog-detail-view .detail-actions, #product-detail-view .detail-actions {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}
/* Contact page actions - same spacing as detail pages */
#about .desktop-actions-wrapper {
    margin: 0 0 12px 0;
}
#blog-detail-view .detail-description, #product-detail-view .detail-description {
    margin-top: 0 !important;
}
#blog-detail-view .detail-description p:first-child, #product-detail-view .detail-description p:first-child {
    margin-top: 0 !important;
}
/* detail-content ve detail-container birleştirme */
.detail-content,
.detail-view .detail-container {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Mobile action buttons CSS'e taşıma */
.mobile-sticky-actions-wrapper .detail-actions {
    margin: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .detail-image {
        height: 120px;
    }
}

.modern-action-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03); /* Very subtle dark fill */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-action-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Button Content Centering */
.btn-content-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.2;
    padding-left: 0;
    border-left: none;
    flex: 1;
}

.btn-label {
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
}

.btn-value {
    font-size: 0.75rem;
    opacity: 0.8;
    display: block;
    white-space: nowrap;
}

/* Blue Variant (Phone) */
.modern-action-btn.btn-blue {
    background: #3b82f6;
    border-color: #2563eb;
}

.modern-action-btn.btn-blue .btn-icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: none;
}

.modern-action-btn.btn-blue:hover {
    background: #2563eb;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

.modern-action-btn.btn-blue .btn-label {
    color: #ffffff;
}

.modern-action-btn.btn-blue .btn-value {
    color: rgba(255, 255, 255, 0.9);
}

/* Green Variant (WhatsApp/Purchase) */
.modern-action-btn.btn-green {
    background: #22c55e;
    border-color: #16a34a;
}

.modern-action-btn.btn-green .btn-icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: none;
}

.modern-action-btn.btn-green:hover {
    background: #16a34a;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.4);
}

.modern-action-btn.btn-green .btn-label {
    color: #ffffff;
}

.modern-action-btn.btn-green .btn-value {
    color: rgba(255, 255, 255, 0.9);
}

/* Full Width Button Helper */
.btn-full-width {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .detail-actions {
        grid-template-columns: 1fr 1fr; /* Keep side-by-side */
        gap: 10px;
        /* Hide top buttons from original container */
        /* But we can't hide them here easily because purple button is also here */
    }
    .btn-full-width {
        grid-column: 1 / -1; /* Ensure full width spans both */
    }
    
    
    
    
    
    
    
    
    
    .site-footer {
        padding-bottom: 20px; /* Add some space in footer too */
    }
    
    
    
    
    /* MOBILE ONLY BUTTONS (Show only on mobile) */
    .mobile-only-btn {
        display: flex;
    }

} /* END MOBILE MEDIA QUERY */

/* DESKTOP STYLES (Outside media query) */
@media (min-width: 769px) {
    /* Hide mobile-only buttons on desktop */
    .mobile-only-btn {
        display: none !important;
    }
    
    
}

/* TABLET RULES */
@media (max-width: 1024px) {
    
}

/* Sticky footer: force desktop visual on mobile/tablet */
@media (max-width: 1024px) {
    
}
    
    @keyframes slideUp {
        from { transform: translateY(100px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    
}

/* Contact Notice */
.contact-notice {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}


.detail-content h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.detail-description h2,
.detail-description h3 {
    margin-top: 18px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.detail-description h4,
.detail-description h5,
.detail-description h6 {
    margin-top: 14px;
    margin-bottom: 6px;
    line-height: 1.35;
}

.detail-price {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

.detail-description {
    line-height: 1.6;
    margin-bottom: 14px;
    color: var(--text-secondary);
    order: 4 !important;
}

.detail-content > .detail-description:last-child {
    margin-bottom: 0;
}

.detail-description p {
    margin: 0 0 12px 0;
    color: var(--text-secondary);
}

.detail-description p strong {
    display: inline-block;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 6px;
}

.detail-description ul,
.detail-description ol {
    margin: 8px 0 14px 0;
    padding-left: 14px;
    list-style-position: outside;
    color: var(--text-secondary);
}

.detail-description li {
    margin: 4px 0;
}

.detail-cta {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--text-primary);
    color: var(--bg-dark);
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.detail-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}



.category-row {
    display: flex;
    overflow-x: scroll;
    /* Force scrollbar */
    gap: 15px;
    padding: 10px 0 20px 0;
    /* Side padding to align with content */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Momentum scrolling on iOS */
    scroll-snap-type: x mandatory;
    scrollbar-width: auto;
    /* Show on Firefox */
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    align-items: flex-start;
}

/* Custom Scrollbar for Chrome, Safari and Opera */
.category-row::-webkit-scrollbar {
    height: 6px;
    display: block;
}

.category-row::-webkit-scrollbar-track {
    background: transparent;
}

.category-row::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.category-row::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.category-row .product-card {
    min-width: 220px;
    /* Fixed width for horizontal items */
    max-width: 220px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* Reference Grid Styles */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.reference-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}

.reference-card:hover {
    background: var(--hover-bg);
    transform: translateY(-3px);
}

.site-footer {
    margin-top: 8px;
    padding: 10px 0 4px;
    border-top: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    max-width: 680px;
    padding: 0 12px;
    margin: 0 auto;
}

.footer-brand-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    line-height: 1;
}

.footer-copyright {
    font-size: 0.72rem;
    opacity: 0.8;
    white-space: nowrap;
}

.footer-separator {
    font-size: 0.7rem;
    opacity: 0.35;
}

.footer-brand-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    opacity: 0.8;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-brand-link:hover {
    color: var(--text-primary);
    opacity: 1;
}

.footer-legal-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 4px;
    width: 100%;
    overflow: hidden;
}

.footer-chip-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.58rem;
    line-height: 1;
    padding: 3px 5px;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.025);
    transition: all 0.2s ease;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.footer-chip-link:hover {
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.06);
}

.footer-actions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-secondary-links,
.footer-mini-link {
    display: none;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--text-secondary);
    text-decoration: none;
    opacity: 0.38;
    font-size: 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    transition: all 0.2s ease;
}

.footer-link:hover {
    opacity: 1;
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
}

@media (max-width: 600px) {
    .footer-content {
        gap: 8px;
        padding: 0 10px;
    }

    .footer-brand-line {
        gap: 5px;
        flex-wrap: wrap;
    }

    .footer-copyright {
        font-size: 0.7rem;
        white-space: normal;
    }

    .footer-brand-link {
        font-size: 0.66rem;
    }

    .footer-legal-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px;
        width: 100%;
        overflow: visible;
    }

    .footer-chip-link {
        font-size: 0.62rem;
        padding: 5px 6px;
        text-align: center;
        white-space: normal;
        line-height: 1.15;
        min-height: 30px;
    }

    .footer-actions {
        gap: 10px;
    }
}

/* Payment Redesign */
.payment-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.payment-card {
    border-radius: 16px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.payment-card-purple {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.2), rgba(59, 7, 100, 0.4));
    border-color: rgba(168, 85, 247, 0.3);
}

.payment-card-purple .payment-icon {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
}

.payment-card-red {
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.2), rgba(69, 10, 10, 0.4));
    border-color: rgba(239, 68, 68, 0.3);
}

.payment-card-red .payment-icon {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.payment-card-orange {
    background: linear-gradient(135deg, rgba(124, 45, 18, 0.2), rgba(67, 20, 7, 0.4));
    border-color: rgba(249, 115, 22, 0.3);
}

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

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.payment-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.payment-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.payment-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.payment-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    min-width: 88px;
}

.payment-value-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.payment-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    overflow-wrap: anywhere;
}

.payment-value.small-text {
    font-size: 0.8rem;
    font-weight: 500;
}

.copy-btn {
    margin-left: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 0.8rem;
    line-height: 1;
    flex-shrink: 0;
}

.copy-btn:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 600px) {
    .payment-container {
        gap: 12px;
    }

    .payment-card {
        padding: 14px;
    }

    .payment-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .payment-label {
        min-width: 0;
    }

    .payment-value-group {
        width: 100%;
        justify-content: space-between;
    }

    .payment-value {
        font-size: 0.85rem;
        line-height: 1.35;
    }
}

/* Compact Business Info and FAQ */
.business-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    margin: 12px 0 16px 0;
}
.business-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.business-info-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}
.business-info-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.95rem;
}
.faq-section {
    order: 5 !important;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    margin: 12px 0 16px 0;
}
.faq-section h3 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}
.faq-item {
    margin-bottom: 10px;
}
.faq-q {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}
.faq-a {
    opacity: 0.9;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
@media (min-width: 769px) {
    #blog .category-header .category-title { 
        display: none !important; 
    }
    #blog .category-row { 
        display: grid !important; 
        grid-template-columns: repeat(2, 1fr); 
        gap: 16px; 
    }
    #blog .product-card { 
        width: 100% !important; 
        max-width: none !important; 
    }
}
/* Info Bar Redesign */
.info-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 12px 0 16px 0;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    min-height: 44px;
}
.info-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.92rem;
    flex: 0 0 auto;
}
.info-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.96rem;
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 720px) {
    .info-bar {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 10px 0 14px 0;
    }
    .info-item {
        padding: 10px 12px;
        border-radius: 14px;
        min-height: 42px;
    }
    .info-label { font-size: 0.9rem; }
    .info-value { font-size: 0.9rem; }
    .business-info {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px;
        border-radius: 14px;
        margin: 8px 0 12px 0;
    }
    .business-info-label,
    .business-info-value {
        font-size: 0.88rem;
    }
    .faq-section {
        padding: 10px;
        border-radius: 14px;
        margin: 10px 0 14px 0;
    }
    .faq-q { font-size: 0.9rem; }
    .faq-a { font-size: 0.85rem; }
}

.info-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: 12px 16px;
    margin: 12px 0 16px 0;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    min-height: 48px;
}
.info-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-right: 12px;
}
.info-col + .info-col {
    border-left: 1px solid rgba(255,255,255,0.12);
    padding-left: 16px;
}
.info-card .info-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.92rem;
}
.info-card .info-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.96rem;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
@media (max-width: 720px) {
    .info-card {
        grid-template-columns: 1fr;
        padding: 10px 14px;
        border-radius: 16px;
        min-height: 44px;
    }
    .info-col {
        padding: 8px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .info-col + .info-col {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.12);
        padding-left: 0;
        padding-top: 10px;
        margin-top: 8px;
    }
    .info-card .info-value { 
        max-width: 100%; 
        text-align: left; 
        align-self: stretch; 
    }
}

/* Legal Footer Styles */
.legal-footer {
    margin-top: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.legal-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.legal-column h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-column p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.5;
}

.legal-column p strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.legal-links {
    list-style: none;
    padding: 0;
}

.legal-links li {
    margin-bottom: 8px;
}

.legal-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.legal-links a::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 8px;
}

.legal-links a:hover {
    color: #fff;
}

.legal-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.reference-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reference-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.1);
}

.reference-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.reference-service {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 600px) {}

/* Variant Toggle */
.nav-variant-toggle {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 8px;
}
.variant-btn {
    padding: 6px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.variant-btn:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.06);
}

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

/* Sadece Teklif Al butonu animasyonlu */
.cta-button {
    background: linear-gradient(to right, #ffffff 0%, #e2e8f0 20%, #ffffff 40%, #ffffff 100%);
    background-size: 200% auto;
    color: #000;
    animation: shine 4s linear infinite;
    transition: all 0.3s ease;
    border: none;
    font-weight: 700;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
    opacity: 1;
}

/* Purple Button (Credit Card style) */
.btn-purple {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
    color: #ffffff; /* Force text white */
}
.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.5);
    background: linear-gradient(135deg, #9363f9, #7530e3);
    color: #ffffff;
}
.btn-purple .btn-value {
    color: rgba(255, 255, 255, 0.8) !important;
}
.btn-purple .btn-label {
    color: #ffffff !important;
}

/* Diğer butonlar animasyonsuz */
.btn-purchase, .detail-btn {
    transition: all 0.3s ease;
}

.btn-purchase:hover, .detail-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.variant-btn.active {
    color: var(--text-primary);
    background: rgba(255,255,255,0.10);
}

/* Basic Nav */
.basic-nav {
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    margin-left: -20px;
    margin-right: -20px;
}
.basic-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 12px;
    padding: 0 20px;
}
.basic-item {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 10px 8px;
    transition: color 0.2s ease;
}
.basic-item:hover {
    color: var(--text-primary);
}
.basic-item.active {
    color: var(--text-primary);
    font-weight: 600;
}

/* Premium Nav */
.premium-nav {
    width: 100%;
    border-radius: 14px;
    padding: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
.premium-menu {
    display: flex;
    justify-content: space-around;
    gap: 8px;
}

.premium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
}

.premium-item.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.premium-item i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.premium-item.active i {
    color: #a78bfa;
    transform: translateY(-2px);
}

.premium-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Animation Classes */
.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* 
   ========================================
   NEW CYBER ACTIONS DESIGN (2026 Redesign)
   ========================================
*/

.new-design-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
    margin-bottom: 12px;
    width: 100%;
}

.cyber-action-btn {
    position: relative;
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border-radius: 18px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.15); /* Slightly lighter border */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    height: auto;
    gap: 12px; /* Gap between Icon, Content, Arrow */
}

/* Lighter & Cleaner Backgrounds */
.btn-blue-cyber {
    background: rgba(59, 130, 246, 0.35);
    border-color: rgba(96, 165, 250, 0.6);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

.btn-green-cyber {
    background: rgba(34, 197, 94, 0.35);
    border-color: rgba(74, 222, 128, 0.6);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.2);
}

/* No hover effect */
.cyber-action-btn:hover {
    transform: none;
}

.btn-blue-cyber:hover {
    background: rgba(59, 130, 246, 0.35);
    border-color: rgba(96, 165, 250, 0.6);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

.btn-green-cyber:hover {
    background: rgba(34, 197, 94, 0.35);
    border-color: rgba(74, 222, 128, 0.6);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.2);
}

/* Restore & Style Icon Layer as Standard Icon */
.cyber-icon-layer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
    
    /* Reset absolute positioning */
    position: static; 
    right: auto;
    bottom: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.btn-blue-cyber .cyber-icon-layer {
    background: rgba(59, 130, 246, 0.3);
    color: #fff;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-green-cyber .cyber-icon-layer {
    background: rgba(34, 197, 94, 0.3);
    color: #fff;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.cyber-action-btn:hover .cyber-icon-layer {
    opacity: 1;
    transform: none;
    right: auto;
}

.btn-blue-cyber:hover .cyber-icon-layer {
    background: rgba(59, 130, 246, 0.3);
    color: #fff;
}

.btn-green-cyber:hover .cyber-icon-layer {
    background: rgba(34, 197, 94, 0.3);
    color: #fff;
}


/* Content Styling */
.cyber-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    flex: 1; /* Takes available space */
    min-width: 0; /* Prevents overflow */
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 12px;
}

.cyber-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cyber-value {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cyber-action-btn:hover .cyber-value {
    color: #fff;
}

/* Simplified Arrow */
.cyber-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.2s ease;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cyber-action-btn:hover .cyber-arrow {
    background: #fff;
    color: #000;
    transform: none;
}

/* Mobile Responsive: keep desktop look (no overrides) */

/* ==============================================
   Mobile Sticky Action Buttons (Clone Implementation)
   ============================================== */

/* Default State: Mobile Sticky is HIDDEN on Desktop/Tablet */
.mobile-sticky-actions-wrapper {
    display: none !important;
    order: 3 !important;
}

/* Hide global sticky container on desktop to avoid duplicate desktop actions */
@media (min-width: 769px) {
    .global-sticky-actions {
        display: none !important;
    }
}

/* Mobile State: Trigger at 768px or lower */
@media (max-width: 768px) {
    body {
        padding-bottom: 110px;
    }
 
    /* Hide desktop actions inside global sticky container */
    .global-sticky-actions .desktop-actions-wrapper {
        display: none !important;
    }
 
    /* Prevent duplicates from content-level wrappers */
    .tab-content .mobile-sticky-actions-wrapper {
        display: none !important;
    }
 
    .global-sticky-actions .mobile-sticky-actions-wrapper {
        display: block !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 99999;
        background: rgba(10, 10, 12, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 16px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    }

    /* Ensure inner grid works perfectly in the sticky container */
    .mobile-sticky-actions-wrapper .detail-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin: 0 !important;
        width: 100%;
    }
    
    /* Adjust button styles slightly for sticky context if needed */
    .mobile-sticky-actions-wrapper .cyber-action-btn {
        margin-bottom: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .mobile-sticky-actions-wrapper .cyber-arrow {
        display: none; /* Hide arrow on mobile to save space */
    }

    /* Compact mobile sticky buttons for small screens */
    .mobile-sticky-actions-wrapper .cyber-action-btn {
        padding: 10px 10px;
        gap: 8px;
        margin-bottom: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .mobile-sticky-actions-wrapper .cyber-icon-layer {
        width: 34px;
        height: 34px;
        min-width: 34px;
        border-radius: 10px;
        font-size: 1.2rem;
    }
    .mobile-sticky-actions-wrapper .cyber-content {
        padding-left: 8px;
        gap: 1px;
        border-left: none;
    }
    .mobile-sticky-actions-wrapper .cyber-label {
        font-size: 0.8rem;
        white-space: nowrap;
    }
    .mobile-sticky-actions-wrapper .cyber-value {
        font-size: 0.68rem;
        white-space: nowrap;
    }
}

@keyframes slideUpSticky {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 374px) {
    .mobile-sticky-actions-wrapper .cyber-action-btn {
        padding: 8px 8px;
        gap: 6px;
    }
    .mobile-sticky-actions-wrapper .cyber-icon-layer {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 1.05rem;
        border-radius: 8px;
    }
    .mobile-sticky-actions-wrapper .cyber-content {
        padding-left: 6px;
        border-left: none;
    }
    .mobile-sticky-actions-wrapper .cyber-label {
        font-size: 0.72rem;
    }
    .mobile-sticky-actions-wrapper .cyber-value {
        font-size: 0.62rem;
    }
}

/* ==============================================
   THEME TOGGLE BUTTON
   ============================================== */
.theme-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 0;
}
.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}
/* Dark mode: show sun icon, hide moon */
.theme-icon-light { display: none; }
.theme-icon-dark { display: block; }

.glass-card {
    position: relative; /* For toggle positioning */
}

@media (max-width: 600px) {
    .theme-toggle {
        top: 14px;
        right: 14px;
        width: 34px;
        height: 34px;
        font-size: 1rem;
        border-radius: 10px;
    }
}

/* ==============================================
   LIGHT MODE
   ============================================== */
.light-mode {
    /* Show moon icon, hide sun */
    & .theme-icon-light { display: block; }
    & .theme-icon-dark { display: none; }
}

/* --- CSS Variable Overrides --- */
.light-mode {
    --bg-dark: #f5f5f7;
    --text-primary: #1a1a2e;
    --text-secondary: #5a5a72;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-blur: 20px;
    --accent-glow: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08), transparent 60%);
    --hover-bg: rgba(0, 0, 0, 0.04);
    --form-bg: rgba(0, 0, 0, 0.03);
    --input-border: rgba(0, 0, 0, 0.12);
}

/* --- Background --- */
.light-mode body {
    color: var(--text-primary);
}
.light-mode html,
.light-mode body {
    background: linear-gradient(135deg, #f0eef6 0%, #f5f5f7 40%, #eef1f5 100%);
}
.light-mode .background-glow {
    background-color: transparent;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 40%);
}

/* --- Glass Card --- */
.light-mode .glass-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* --- Theme Toggle in Light Mode --- */
.light-mode .theme-toggle {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-secondary);
}
.light-mode .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
    border-color: rgba(0, 0, 0, 0.15);
}

/* --- Profile --- */
.light-mode .avatar-container {
    border-color: rgba(0, 0, 0, 0.08);
}
.light-mode .online-indicator {
    border-color: #ffffff;
}
.light-mode .profile-info h1,
.light-mode .profile-info .profile-name {
    color: var(--text-primary);
}
.light-mode .profile-info .title {
    color: var(--text-secondary);
}
.light-mode .profile-bio {
    color: var(--text-secondary);
}

/* --- Navigation (Inline Nav) --- */
.light-mode .inline-nav {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.06);
}
.light-mode .inline-item {
    color: var(--text-secondary);
    border-color: rgba(0, 0, 0, 0.06);
    background: rgba(0, 0, 0, 0.02);
}
.light-mode .inline-item:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}
.light-mode .inline-item.active {
    color: #6d28d9;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.10) 0%, rgba(59, 130, 246, 0.10) 100%);
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.10);
}

/* --- Inline Chips --- */
.light-mode .inline-chip {
    color: var(--text-secondary);
    border-color: rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
}
.light-mode .inline-chip .count {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-secondary);
}
.light-mode .inline-chip:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.12);
}

/* --- Tabs Nav --- */
.light-mode .tabs-nav {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.light-mode .tab-btn {
    color: var(--text-secondary);
}
.light-mode .tab-btn:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-primary);
}
.light-mode .tab-btn.active {
    background: rgba(139, 92, 246, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
}
.light-mode .tab-btn.active i {
    color: #7c3aed;
    text-shadow: none;
}

/* --- Welcome Section --- */
.light-mode .welcome-section {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}
.light-mode .welcome-section p {
    color: var(--text-primary);
}

/* --- Product Cards --- */
.light-mode .product-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.light-mode .product-card:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}
.light-mode .product-details h3 {
    color: var(--text-primary);
}
.light-mode .product-subtitle {
    color: var(--text-secondary);
}
.light-mode .product-edit-btn {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
}
.light-mode .product-edit-btn:hover {
    background: #fff;
    color: var(--text-primary);
}

/* --- Category --- */
.light-mode .category-title {
    color: var(--text-primary);
}
.light-mode .category-row::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
}
.light-mode .category-row::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}

/* --- Detail View --- */
.light-mode .product-detail-view {
    color: var(--text-primary);
}
.light-mode .detail-content,
.light-mode .detail-header,
.light-mode .detail-image,
.light-mode .detail-separator {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.light-mode .detail-title {
    color: var(--text-primary);
}
.light-mode #detail-title,
.light-mode #blog-detail-title,
.light-mode .detail-header h1,
.light-mode .detail-header h2 {
    text-shadow: none !important;
    filter: none !important;
    background: none !important;
}
.light-mode .detail-header {
    box-shadow: none !important;
}
.light-mode .detail-subtitle {
    color: var(--text-secondary);
}
.light-mode .detail-separator {
    background: rgba(0, 0, 0, 0.08) !important;
}
.light-mode .detail-description {
    color: var(--text-secondary);
}
.light-mode .detail-description p {
    color: var(--text-secondary);
}
.light-mode .detail-description p strong {
    color: var(--text-primary);
}
.light-mode .detail-description h2,
.light-mode .detail-description h3,
.light-mode .detail-description h4 {
    color: var(--text-primary);
}
.light-mode .detail-description ul,
.light-mode .detail-description ol,
.light-mode .detail-description li {
    color: var(--text-secondary);
}
.light-mode .detail-description a {
    color: #6d28d9;
}
.light-mode .keyword-tag {
    background: rgba(139, 92, 246, 0.08);
    color: #6d28d9;
    border-color: rgba(139, 92, 246, 0.15);
}
.light-mode .back-btn {
    color: var(--text-secondary);
    border-color: rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
}
.light-mode .back-btn:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.05);
}

/* --- Cyber Action Buttons --- */
.light-mode .cyber-action-btn {
    border-color: rgba(0, 0, 0, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.light-mode .btn-blue-cyber {
    background: #3b82f6;
    border-color: #2563eb;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.light-mode .cyber-action-btn {
    border-color: rgba(0, 0, 0, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.light-mode .btn-blue-cyber {
    background: #3b82f6;
    border-color: #2563eb;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}
.light-mode .btn-blue-cyber .cyber-label,
.light-mode .btn-blue-cyber .cyber-value {
    color: #fff;
}
.light-mode .btn-blue-cyber:hover {
    background: #2563eb;
    border-color: #1d4ed8;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}
.light-mode .btn-green-cyber {
    background: #22c55e;
    border-color: #16a34a;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}
.light-mode .btn-green-cyber .cyber-label,
.light-mode .btn-green-cyber .cyber-value {
    color: #fff;
}
.light-mode .btn-green-cyber:hover {
    background: #16a34a;
    border-color: #15803d;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}
.light-mode .cyber-label {
    color: var(--text-primary);
}
.light-mode .cyber-value {
    color: var(--text-primary);
}
.light-mode .cyber-action-btn:hover .cyber-value {
    color: var(--text-primary);
}
.light-mode .cyber-icon-layer {
    color: inherit;
}
.light-mode .btn-blue-cyber .cyber-icon-layer {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}
.light-mode .btn-green-cyber .cyber-icon-layer {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}
.light-mode .btn-blue-cyber .cyber-content,
.light-mode .btn-green-cyber .cyber-content {
    border-left-color: rgba(255, 255, 255, 0.2);
}
.light-mode .cyber-content {
    border-left-color: rgba(0, 0, 0, 0.08);
}
.light-mode .cyber-arrow {
    background: var(--text-primary);
    color: #fff;
}
.light-mode .btn-blue-cyber .cyber-arrow,
.light-mode .btn-green-cyber .cyber-arrow {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}
.light-mode .cyber-action-btn:hover .cyber-arrow {
    background: var(--text-primary);
    color: #fff;
}

/* --- Contact Form --- */
.light-mode .form-input,
.light-mode .form-textarea {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}
.light-mode .form-input::placeholder,
.light-mode .form-textarea::placeholder {
    color: rgba(0, 0, 0, 0.35);
}
.light-mode .form-input:focus,
.light-mode .form-textarea:focus {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.08);
}
.light-mode .submit-btn {
    background: #1a1a2e;
    color: #ffffff;
}
.light-mode .submit-btn:hover {
    background: #2d2d4a;
}

/* --- Link Items --- */
.light-mode .link-item {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
    color: var(--text-primary);
}
.light-mode .link-item:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}
.light-mode .arrow-icon {
    color: var(--text-secondary);
}

/* --- Footer Items --- */
.light-mode .footer-item {
    color: var(--text-secondary);
}
.light-mode .footer-item.active {
    color: #6d28d9;
}

/* --- Referanslar --- */
.light-mode .ref-card {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.06);
}
.light-mode .ref-card:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.1);
}

/* --- Overlay / Modal --- */
.light-mode .nav-overlay {
    background: rgba(0, 0, 0, 0.4);
}
.light-mode .overlay-inner {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.08);
}
.light-mode .overlay-title {
    color: var(--text-primary);
}
.light-mode .overlay-close {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-secondary);
}
.light-mode .overlay-close:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.06);
}
.light-mode .overlay-item {
    color: var(--text-primary);
    border-color: rgba(0, 0, 0, 0.08);
    background: rgba(139, 92, 246, 0.04);
}
.light-mode .overlay-item:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.light-mode .overlay-chip {
    color: var(--text-secondary);
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
}
.light-mode .overlay-chip:hover {
    color: var(--text-primary);
    border-color: rgba(0, 0, 0, 0.18);
}

/* --- Success Modal --- */
.light-mode .success-modal {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.light-mode .success-title {
    color: var(--text-primary);
}
.light-mode .success-desc {
    color: var(--text-secondary);
}

/* --- Editor Overlay --- */
.light-mode .editor-overlay {
    background: rgba(0, 0, 0, 0.4);
}
.light-mode .product-editor {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}
.light-mode .editor-title {
    color: var(--text-primary);
}
.light-mode .editor-close {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-secondary);
}
.light-mode .editor-close:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-primary);
}
.light-mode .editor-label {
    color: var(--text-secondary);
}
.light-mode .editor-input,
.light-mode .editor-textarea {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}
.light-mode .editor-input:focus,
.light-mode .editor-textarea:focus {
    border-color: rgba(139, 92, 246, 0.4);
    background: #fff;
}

/* --- Mobile Sticky --- */
.light-mode .global-sticky-actions .mobile-sticky-actions-wrapper {
    background: rgba(255, 255, 255, 0.92);
    border-top-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
}

/* --- Floating Actions --- */
.light-mode .fab-btn {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: var(--text-secondary);
}
.light-mode .fab-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.12);
}
.light-mode .fab-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    color: #16a34a;
    border-color: #16a34a;
}
.light-mode .fab-btn.phone:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border-color: #2563eb;
}

/* --- Detail Image --- */
.light-mode .detail-image {
    border-radius: 16px;
}

/* --- Scrollbar --- */
.light-mode ::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
}
.light-mode ::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}
.light-mode ::-webkit-scrollbar-track {
    background: transparent;
}

/* --- Address/Info Blocks --- */
.light-mode .info-block,
.light-mode .address-block {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
    color: var(--text-secondary);
}

/* --- FAQ --- */
.light-mode .faq-section {
    color: var(--text-primary);
}
.light-mode .faq-item {
    border-color: rgba(0, 0, 0, 0.06);
    background: rgba(0, 0, 0, 0.02);
}
.light-mode .faq-q {
    color: var(--text-primary);
}
.light-mode .faq-a {
    color: var(--text-secondary);
}
.light-mode .related-post-card {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.1);
}
.light-mode .related-post-card:hover {
    border-color: rgba(0,0,0,0.2);
}
.light-mode .related-posts-section {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.08);
    border-top-color: rgba(0,0,0,0.10);
}
.light-mode .related-posts-section h3 {
    color: rgba(0,0,0,0.55);
}
.light-mode .related-post-card {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.08);
}
.light-mode .related-post-card:hover {
    border-color: rgba(0,0,0,0.18);
}

/* --- Menu Toggle --- */
.light-mode .menu-toggle {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(59, 130, 246, 0.10) 100%);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

/* --- Trust Badge --- */
.light-mode .trust-badge {
    color: var(--text-secondary) !important;
}

/* --- Quill Editor Content in Light Mode --- */
.light-mode .ql-editor {
    color: var(--text-primary);
}
.light-mode .detail-description .ql-editor {
    color: var(--text-secondary);
}

/* --- Smooth transition for theme switch --- */
html.light-mode *,
html.light-mode *::before,
html.light-mode *::after {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
