/**
 * Bento Grid CSS
 * vividapk.com için modern Bento Grid tasarımı
 *
 * @package Linx_Roosphx
 */

/* =============================================================================
   FONTS
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400;500;600;700&f[]=general-sans@400;500;600&display=swap');

/* =============================================================================
   CSS VARIABLES
   ============================================================================= */

:root {
    --bento-surface: #fafafa;
    --bento-ink: #0a0a0a;
    --bento-muted: #737373;
    --bento-subtle: #a3a3a3;
    --bento-border: #e5e5e5;
    --bento-accent: #18181b;
    --bento-white: #ffffff;
    --bento-radius: 16px;
    --bento-radius-sm: 12px;
    --bento-radius-full: 9999px;
    --bento-transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Dark Mode */
body.dark-mode {
    --bento-surface: #222222;
    --bento-ink: #fafafa;
    --bento-muted: #a3a3a3;
    --bento-subtle: #737373;
    --bento-border: #444;
    --bento-accent: #e5e5e5;
    --bento-white: #2b2b2b;
}

/* =============================================================================
   SECTION WRAPPER
   ============================================================================= */

/* Site content padding override */
.site-content {
    padding-top: 20 !important;
}

/* Posts wrapper flex layout */
.row.posts-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.bento-grid-section {
    padding: 0px 15px 20px;
    background: rgb(244, 244, 244);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

body.dark-mode .bento-grid-section {
    background: #222222 !important;
}

@media (min-width: 1024px) {
    .bento-grid-section {
        max-width: 1160px;
        margin-left: auto;
        margin-right: auto;
    }
}

.bento-grid-section .container {
    max-width: 1160px;
    width: 1160px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

/* =============================================================================
   BENTO GRID LAYOUT
   ============================================================================= */

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: 7fr 5fr;
        align-items: stretch;
    }
}

.bento-left,
.bento-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bento-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    flex: 1;
}

/* =============================================================================
   CAROUSEL
   ============================================================================= */

.bento-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--bento-radius);
    background: var(--bento-ink);
    min-height: 250px;
    flex: 1;
    cursor: grab;
}

@media (min-width: 640px) {
    .bento-carousel-wrapper {
        min-height: 300px;
    }
}

.bento-carousel-wrapper:active {
    cursor: grabbing;
}

/* Slide Counter */
.bento-slide-counter {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--bento-radius-full);
    padding: 6px 12px;
}

.slide-current {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    color: white;
}

.slide-divider {
    width: 16px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.slide-total {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* Nav Buttons */
.bento-nav-buttons {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 20;
    display: flex;
    flex-direction: row;
    gap: 6px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

@media (min-width: 640px) {
    .bento-nav-buttons {
        left: 16px;
        right: auto;
        bottom: 16px;
        gap: 8px;
        opacity: 0;
    }

    .bento-carousel-wrapper:hover .bento-nav-buttons {
        opacity: 1;
    }
}

.bento-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--bento-transition);
}

@media (min-width: 640px) {
    .bento-nav-btn {
        width: 40px;
        height: 40px;
    }
}

.bento-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Carousel Track */
.bento-carousel-track {
    display: flex;
    height: 100%;
    position: absolute;
    inset: 0;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.bento-carousel-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) brightness(0.95);
}

.bento-carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10, 10, 10, 0.1) 0%,
        rgba(10, 10, 10, 0.7) 100%);
}

/* Slide Content */
.bento-slide-content {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 16px;
    z-index: 10;
    text-align: right;
    max-width: 260px;
}

@media (min-width: 640px) {
    .bento-slide-content {
        padding: 24px;
        max-width: 320px;
    }
}

.bento-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--bento-radius-full);
    padding: 4px 10px;
    margin-bottom: 8px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.badge-dot.bg-emerald { background: #34d399; }
.badge-dot.bg-blue { background: #60a5fa; }
.badge-dot.bg-green { background: #4ade80; }
.badge-dot.bg-amber { background: #fbbf24; }

.badge-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
}

.bento-slide-title {
    font-family: 'Clash Display', system-ui, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin: 0 0 4px;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .bento-slide-title {
        font-size: 28px;
    }
}

.bento-slide-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 12px;
}

.bento-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: var(--bento-ink);
    border-radius: var(--bento-radius-full);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--bento-transition);
}

.bento-slide-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

body.dark-mode .bento-slide-btn {
    background: #fafafa;
    color: #222222;
}

body.dark-mode .bento-slide-btn:hover {
    background: #e5e5e5;
}

/* =============================================================================
   BENTO CARDS
   ============================================================================= */

.bento-card {
    background: var(--bento-white);
    border-radius: var(--bento-radius);
    padding: 20px;
    border: 1px solid var(--bento-border);
    transition: var(--bento-transition);
}

.bento-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

body.dark-mode .bento-card {
    background: #2b2b2b;
    border-color: #3a3a3a;
}

body.dark-mode .bento-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bento-card h3 {
    font-family: 'Clash Display', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--bento-ink);
    margin: 0 0 4px;
}

.bento-card p {
    font-size: 12px;
    color: var(--bento-muted);
    margin: 0;
}

.bento-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--bento-ink);
}

.bento-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--bento-muted);
}

/* =============================================================================
   SON GÜNCELLENENLER
   ============================================================================= */

.bento-updates {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.bento-card-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .bento-card-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.bento-card-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bento-icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--bento-radius-sm);
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bento-ink);
}

body.dark-mode .bento-icon-box {
    background: linear-gradient(135deg, #262626 0%, #1a1a1a 100%);
}

.bento-card-text h3 {
    margin-bottom: 2px;
}

.bento-card-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 56px;
}

@media (min-width: 640px) {
    .bento-card-right {
        margin-left: 0;
    }
}

.bento-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    border-radius: var(--bento-radius-full);
    padding: 4px 10px;
}

body.dark-mode .bento-live-badge {
    background: rgba(16, 185, 129, 0.15);
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.live-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    color: #059669;
}

body.dark-mode .live-text {
    color: #34d399;
}

.bento-date {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--bento-subtle);
}

/* =============================================================================
   EDİTÖRÜN SEÇİMİ
   ============================================================================= */

.bento-editor-pick {
    display: flex;
    flex-direction: column;
}

.bento-editor-pick h3 {
    margin-bottom: 2px;
}

.bento-editor-pick > p {
    margin-bottom: 16px;
}

.bento-icon-row {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.bento-mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bento-ink);
    transition: var(--bento-transition);
}

body.dark-mode .bento-mini-icon {
    background: #262626;
}

.bento-mini-icon:hover {
    background: #e5e5e5;
}

body.dark-mode .bento-mini-icon:hover {
    background: #333;
}

.bento-more {
    background: #fafafa;
    color: var(--bento-subtle);
}

body.dark-mode .bento-more {
    background: #1a1a1a;
}

.bento-more span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 500;
}

/* =============================================================================
   VIP CARD
   ============================================================================= */

.bento-vip {
    background: var(--bento-ink);
    border-color: transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

body.dark-mode .bento-vip {
    background: #fafafa !important;
    border-color: #e5e5e5 !important;
}

.bento-vip-orb {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    border-radius: 50%;
    filter: blur(24px);
}

body.dark-mode .bento-vip-orb {
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 100%);
}

.bento-vip-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bento-vip .bento-card-header {
    color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .bento-vip .bento-card-header {
    color: rgba(0, 0, 0, 0.6);
}

.bento-vip .bento-label {
    color: rgba(255, 255, 255, 0.4);
}

body.dark-mode .bento-vip .bento-label {
    color: rgba(0, 0, 0, 0.4);
}

.bento-vip h3 {
    color: white;
}

body.dark-mode .bento-vip h3 {
    color: #222222 !important;
}

.bento-vip > .bento-vip-content > p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

body.dark-mode .bento-vip > .bento-vip-content > p {
    color: rgba(0, 0, 0, 0.5);
}

.bento-vip-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--bento-ink);
    border-radius: var(--bento-radius-full);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-top: auto;
    transition: var(--bento-transition);
}

body.dark-mode .bento-vip-btn {
    background: #222222 !important;
    color: #fafafa !important;
}

.bento-vip-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

body.dark-mode .bento-vip-btn:hover {
    background: #333333 !important;
}

.vip-btn-ping {
    position: absolute;
    inset: 0;
    border-radius: var(--bento-radius-full);
    background: white;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.4;
}

body.dark-mode .vip-btn-ping {
    background: #222222 !important;
}

@keyframes ping {
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.vip-btn-text {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =============================================================================
   MOD BUL (SEARCH)
   ============================================================================= */

.bento-search {
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

body.dark-mode .bento-search {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.bento-search-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 8px;
}

.bento-search-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bento-search-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--bento-ink);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode .bento-search-icon {
    background: #fafafa !important;
    color: #222222 !important;
}

.bento-search-count {
    background: var(--bento-ink);
    color: white;
    border-radius: var(--bento-radius-full);
    padding: 4px 12px;
}

body.dark-mode .bento-search-count {
    background: #fafafa !important;
    color: #222222 !important;
}

.bento-search-count span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 500;
}

.bento-search h3 {
    margin-bottom: 12px;
}

.bento-search-form {
    position: relative;
    margin-bottom: 12px;
}

.bento-search-form input {
    width: 100%;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: var(--bento-radius-sm);
    padding: 14px 16px;
    padding-right: 48px;
    font-size: 14px;
    color: var(--bento-ink);
    transition: var(--bento-transition);
}

body.dark-mode .bento-search-form input {
    background: #262626;
    color: white;
}

.bento-search-form input::placeholder {
    color: var(--bento-subtle);
}

.bento-search-form input:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.2);
    background: white;
}

body.dark-mode .bento-search-form input:focus {
    border-color: rgba(255, 255, 255, 0.2);
    background: #1a1a1a;
}

.bento-search-form button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bento-ink);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--bento-transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.bento-search-form button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

body.dark-mode .bento-search-form button {
    background: #fafafa !important;
    color: #222222 !important;
}

.bento-search-form button:hover {
    background: #333;
}

body.dark-mode .bento-search-form button:hover {
    background: #e5e5e5;
}

.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bento-tag {
    background: #f5f5f5;
    border: 1px solid transparent;
    border-radius: var(--bento-radius-full);
    padding: 6px 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--bento-muted);
    text-decoration: none;
    transition: var(--bento-transition);
}

body.dark-mode .bento-tag {
    background: #262626;
}

.bento-tag:hover {
    background: var(--bento-ink);
    color: white;
    border-color: var(--bento-ink);
}

body.dark-mode .bento-tag:hover {
    background: white;
    color: var(--bento-ink);
}

/* =============================================================================
   TELEGRAM CARD
   ============================================================================= */

.bento-telegram {
    position: relative;
}

.bento-telegram-float {
    position: absolute;
    top: -12px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #0ea5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
    animation: float 4s ease-in-out infinite;
}

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

.bento-telegram-header svg {
    color: #0ea5e9;
}

.bento-telegram-label {
    color: #0284c7 !important;
}

.bento-telegram h3 {
    margin-bottom: 4px;
}

.bento-telegram > p {
    margin-bottom: 16px;
    max-width: 200px;
}

.bento-telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0ea5e9;
    color: white;
    border-radius: var(--bento-radius-full);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--bento-transition);
}

.bento-telegram-btn:hover {
    background: #0284c7;
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */

.bento-carousel-wrapper,
.bento-card {
    opacity: 0;
    animation: reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes reveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento-carousel-wrapper { animation-delay: 0.05s; }
.bento-updates { animation-delay: 0.15s; }
.bento-editor-pick { animation-delay: 0.2s; }
.bento-vip { animation-delay: 0.25s; }
.bento-search { animation-delay: 0.3s; }
.bento-telegram { animation-delay: 0.35s; }

/* =============================================================================
   UNIFIED BUTTON STYLES
   ============================================================================= */

/* Base Button - Minimalist & Modern */
.bento-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: 'General Sans', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--bento-radius-full);
    cursor: pointer;
    transition: var(--bento-transition);
    background: transparent;
    color: var(--bento-ink);
}

.bento-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Primary Button - Solid Dark/Light */
.bento-btn-primary {
    background: var(--bento-ink);
    color: var(--bento-white);
}

.bento-btn-primary:hover {
    background: #333333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body.dark-mode .bento-btn-primary {
    background: #fafafa;
    color: #222222;
}

body.dark-mode .bento-btn-primary:hover {
    background: #e5e5e5;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Secondary Button - Subtle Background */
.bento-btn-secondary {
    background: #f5f5f5;
    color: var(--bento-ink);
}

.bento-btn-secondary:hover {
    background: #e5e5e5;
    transform: translateY(-1px);
}

body.dark-mode .bento-btn-secondary {
    background: #333333;
    color: #fafafa;
}

body.dark-mode .bento-btn-secondary:hover {
    background: #444444;
}

/* Outline Button - Border Only */
.bento-btn-outline {
    background: transparent;
    color: var(--bento-ink);
    border: 1.5px solid var(--bento-border);
}

.bento-btn-outline:hover {
    border-color: var(--bento-ink);
    background: var(--bento-ink);
    color: var(--bento-white);
}

body.dark-mode .bento-btn-outline {
    border-color: #444;
    color: #fafafa;
}

body.dark-mode .bento-btn-outline:hover {
    border-color: #fafafa;
    background: #fafafa;
    color: #222222;
}

/* Ghost Button - Text Only with Hover Effect */
.bento-btn-ghost {
    background: transparent;
    color: var(--bento-muted);
    padding: 8px 12px;
}

.bento-btn-ghost:hover {
    color: var(--bento-ink);
    background: rgba(0, 0, 0, 0.05);
}

body.dark-mode .bento-btn-ghost:hover {
    color: #fafafa;
    background: rgba(255, 255, 255, 0.08);
}

/* Icon Button - Circular */
.bento-btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background: #f5f5f5;
    color: var(--bento-ink);
}

.bento-btn-icon:hover {
    background: var(--bento-ink);
    color: var(--bento-white);
    transform: scale(1.05);
}

body.dark-mode .bento-btn-icon {
    background: #333333;
    color: #fafafa;
}

body.dark-mode .bento-btn-icon:hover {
    background: #fafafa;
    color: #222222;
}

/* Small Size Modifier */
.bento-btn-sm {
    padding: 6px 14px;
    font-size: 12px;
    gap: 6px;
}

.bento-btn-sm svg {
    width: 14px;
    height: 14px;
}

.bento-btn-icon.bento-btn-sm {
    width: 32px;
    height: 32px;
}

/* Large Size Modifier */
.bento-btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    gap: 10px;
}

.bento-btn-lg svg {
    width: 20px;
    height: 20px;
}

.bento-btn-icon.bento-btn-lg {
    width: 52px;
    height: 52px;
}

/* Button with Arrow Animation */
.bento-btn-arrow svg {
    transition: transform 0.3s ease;
}

.bento-btn-arrow:hover svg {
    transform: translateX(3px);
}

/* Disabled State */
.bento-btn:disabled,
.bento-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */

@media (max-width: 639px) {
    .bento-top-row {
        grid-template-columns: 1fr;
    }

    .bento-slide-content {
        text-align: left;
        left: 0;
        right: 0;
        max-width: none;
    }

    .bento-slide-badge {
        margin-bottom: 6px;
    }

    .bento-slide-title {
        font-size: 22px;
    }
}

/* =============================================================================
   NAVBAR BENTO BUTTONS
   ============================================================================= */

/* Navbar Bento Button Container */
.col-social > div,
.col-hamburger {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Navbar Bento Button Base */
.navbar-bento-btn {
    width: 36px !important;
    height: 36px !important;
    background: var(--bento-white, #ffffff) !important;
    border: 1px solid var(--bento-border, #e5e5e5) !important;
    color: var(--bento-ink, #0a0a0a) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.navbar-bento-btn:hover {
    background: var(--bento-ink, #0a0a0a) !important;
    color: var(--bento-white, #ffffff) !important;
    border-color: var(--bento-ink, #0a0a0a) !important;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-bento-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Dark Mode - Navbar Bento Buttons */
body.dark-mode .navbar-bento-btn {
    background: #2b2b2b !important;
    border-color: #444 !important;
    color: #fafafa !important;
}

body.dark-mode .navbar-bento-btn:hover {
    background: #fafafa !important;
    color: #222222 !important;
    border-color: #fafafa !important;
}

/* Dark Mode Toggle - Icon Visibility */
.dark-mode-toggle .dark-mode-icon-sun {
    display: none;
}

.dark-mode-toggle .dark-mode-icon-moon {
    display: block;
}

body.dark-mode .dark-mode-toggle .dark-mode-icon-sun {
    display: block;
}

body.dark-mode .dark-mode-toggle .dark-mode-icon-moon {
    display: none;
}

/* User Profile Button - Accent Color */
.user-profile-btn:hover {
    background: #10b981 !important;
    border-color: #10b981 !important;
    color: #ffffff !important;
}

body.dark-mode .user-profile-btn:hover {
    background: #34d399 !important;
    border-color: #34d399 !important;
    color: #0a0a0a !important;
}

/* Logout Button - Warning Color */
.user-logout-btn:hover {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    color: #ffffff !important;
}

body.dark-mode .user-logout-btn:hover {
    background: #f87171 !important;
    border-color: #f87171 !important;
    color: #0a0a0a !important;
}

/* Login Button - Primary Action */
.user-login-btn:hover {
    background: #3b82f6 !important;
    border-color: #3b82f6 !important;
    color: #ffffff !important;
}

body.dark-mode .user-login-btn:hover {
    background: #60a5fa !important;
    border-color: #60a5fa !important;
    color: #0a0a0a !important;
}

/* Mobile Navbar Buttons */
@media (max-width: 1023px) {
    .col-hamburger {
        gap: 6px;
    }

    .navbar-bento-btn {
        width: 32px !important;
        height: 32px !important;
    }

    .navbar-bento-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* =============================================================================
   MOBILE TOUCH FIX - Hover state yapışmasını önle
   ============================================================================= */

@media (hover: none) and (pointer: coarse) {
    /* Touch cihazlarda hover efektlerini devre dışı bırak */
    .navbar-bento-btn:hover {
        background: var(--bento-white, #ffffff) !important;
        color: var(--bento-ink, #0a0a0a) !important;
        border-color: var(--bento-border, #e5e5e5) !important;
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    }

    body.dark-mode .navbar-bento-btn:hover {
        background: #2b2b2b !important;
        color: #fafafa !important;
        border-color: #444 !important;
    }

    /* Active durumunda kısa bir feedback ver */
    .navbar-bento-btn:active {
        background: var(--bento-ink, #0a0a0a) !important;
        color: var(--bento-white, #ffffff) !important;
        transform: scale(0.95) !important;
    }

    body.dark-mode .navbar-bento-btn:active {
        background: #fafafa !important;
        color: #222222 !important;
    }
}

/* =============================================================================
   MOBILE HERO CATEGORY HIDE - Mobilde hero kartta kategori gizle
   ============================================================================= */

@media (max-width: 639px) {
    .bento-carousel-wrapper .bento-slide-badge {
        display: none !important;
    }

    /* Mobilde gizlenecek kartlar */
    .bento-card.bento-search,
    .bento-card.bento-updates,
    .bento-card.bento-editor-pick {
        display: none !important;
    }
}
