:root {
    --store-accent: #3b82f6;
    --store-accent-light: #60a5fa;
    --store-text: #1e293b;
    --store-text-secondary: #64748b;
    --store-card-bg: #ffffff;
    --store-card-border: #e2e8f0;
    --store-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    --store-radius: 20px;
    --store-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --store-alert-bg: rgba(59, 130, 246, 0.08);
    --app-accent: #3b82f6;
    --app-accent-light: #60a5fa;
    --app-bg: #ffffff;
    --app-card-bg: #f8fafc;
    --app-card-border: #e2e8f0;
    --app-text: #1e293b;
    --app-text-secondary: #64748b;
    --app-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    --app-radius: 16px;
    --app-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-accent: #3b82f6;
    --nav-accent-light: #60a5fa;
    --nav-bg: rgba(255, 255, 255, 0.6);
    --nav-border: rgba(255, 255, 255, 0.3);
    --nav-text: #1e293b;
    --nav-text-secondary: #64748b;
    --nav-hover: rgba(0, 0, 0, 0.04);
    --nav-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --nav-radius: 60px;
    --nav-blur: blur(18px) saturate(180%);
    --nav-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body[data-bs-theme="dark"] {
    --store-text: #f1f5f9;
    --store-text-secondary: #94a3b8;
    --store-card-bg: #1e293b;
    --store-card-border: #334155;
    --store-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    --store-alert-bg: rgba(59, 130, 246, 0.15);
    --app-card-bg: #1e293b;
    --app-card-border: #334155;
    --app-text: #f1f5f9;
    --app-text-secondary: #94a3b8;
    --app-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    --nav-bg: rgba(15, 23, 42, 0.75);
    --nav-border: rgba(255, 255, 255, 0.15);
    --nav-text: #f1f5f9;
    --nav-text-secondary: #94a3b8;
    --nav-hover: rgba(255, 255, 255, 0.08);
    --nav-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
}

.sibou-store-alert {
    background: var(--store-alert-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 0.9rem 1.5rem;
    margin: 1.5rem auto 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--store-text);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.06);
}

    .sibou-store-alert i {
        color: var(--store-accent);
        font-size: 1.2rem;
    }

.sibou-store-slider-section {
    margin: 1.5rem auto 0;
    padding: 0 20px;
}

.sibou-store-slider {
    border-radius: 24px;
    overflow: hidden;
}

.sibou-store-slide {
    position: relative;
    height: 340px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    margin: 15px 8px;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

    .sibou-store-slide:hover {
        transform: scale(1.02);
    }

    .sibou-store-slide::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    }

.sibou-store-slide-content {
    position: relative;
    z-index: 1;
    padding: .8rem .8rem;
    color: #fff;
    max-width: 600px;
}

.sibou-store-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--store-accent);
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
}

    .sibou-store-slide-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .sibou-store-slide-btn:hover::before {
        left: 100%;
    }

    .sibou-store-slide-btn:hover {
        background: #2563eb;
        color: #fff;
    }

.sibou-store-slide:hover {
    box-shadow: 1px 1px 1px gray;
}

.sibou-store-divider-icon {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 2rem 0;
    color: var(--store-accent);
    font-size: 1.2rem;
}

    .sibou-store-divider-icon::before {
        content: '';
        flex: 1;
        height: 2px;
        background: linear-gradient(to right, var(--store-card-border), transparent);
        border-radius: 2px;
    }

    .sibou-store-divider-icon::after {
        content: '';
        flex: 1;
        height: 2px;
        background: linear-gradient(to left, var(--store-card-border), transparent);
        border-radius: 2px;
    }

/* Apps Slider Styles */
.sibou-apps-slider {
    overflow: visible !important;
    padding: 10px 5px;
}

    .sibou-apps-slider .owl-stage-outer {
        padding: 20px 5px;
    }

.sibou-apps-section {
    margin: 2rem auto 0;
    padding: 20px 20px;
}

.sibou-apps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
}

.sibou-apps-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--app-text);
    margin: 0;
    position: relative;
    padding-bottom: 0.6rem;
}

    .sibou-apps-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(to left, var(--app-accent), var(--app-accent-light));
        border-radius: 2px;
    }

.sibou-apps-all {
    font-size: 0.9rem;
    color: var(--app-accent);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    position: relative;
    padding-bottom: 2px;
}

    .sibou-apps-all::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1.5px;
        background: var(--app-accent);
        border-radius: 2px;
        transition: width 0.25s ease;
    }

    .sibou-apps-all:hover::after {
        width: 100%;
    }

    .sibou-apps-all i {
        transition: transform 0.2s ease;
    }

    .sibou-apps-all:hover i {
        transform: translateX(-4px);
    }

.sibou-apps-all {
    font-size: 0.9rem;
    color: var(--app-accent);
    text-decoration: none;
    font-weight: 600;
}

.sibou-apps-slider .sibou-app-slide {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sibou-app-card {
    background: var(--app-card-bg);
    border: 1px solid var(--app-card-border);
    border-radius: var(--app-radius);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all var(--app-transition);
    box-shadow: var(--app-shadow);
    text-decoration: none;
    color: inherit;
    max-width: 390px;
    width: 100%;
}

    .sibou-app-card:hover {
        transform: translateY(-4px) scale(1.01);
        border-color: var(--app-accent);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    }

.sibou-app-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

    .sibou-app-icon img {
        width: 36px;
        height: 36px;
        object-fit: contain;
    }

.sibou-app-info {
    flex: 1;
}

.sibou-app-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--app-text);
    margin-bottom: 2px;
}

.sibou-app-desc {
    font-size: 0.8rem;
    color: var(--app-text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sibou-app-btn {
    background: var(--app-accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

    .sibou-app-btn:hover {
        background: #2563eb;
        color: #fff;
        transform: scale(1.05);
    }

.sibou-apps-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    color: var(--app-accent) !important;
    font-size: 1rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

    .sibou-apps-slider .owl-nav button:hover {
        background: var(--app-accent) !important;
        color: #fff !important;
        border-color: var(--app-accent) !important;
    }

.sibou-apps-slider .owl-prev {
    right: -15px;
}

.sibou-apps-slider .owl-next {
    left: -15px;
}

.sibou-divider-steps {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 2.5rem 0;
}

    .sibou-divider-steps span {
        width: 20px;
        height: 2px;
        background: var(--app-accent);
        border-radius: 2px;
        transform: rotate(-30deg);
        opacity: 0.5;
    }

        .sibou-divider-steps span:nth-child(odd) {
            opacity: 0.8;
            width: 25px;
        }

/* Bank Sliders Styles */

.sibou-icon-slider-section {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 20px;
}

.sibou-icon-slider {
    position: relative;
}

.sibou-icon-card {
    background: var(--app-card-bg);
    border: 1px solid var(--app-card-border);
    border-radius: var(--app-radius);
    padding: 1.2rem 0.5rem;
    text-align: center;
    box-shadow: var(--app-shadow);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    margin: 8px 0;
}

    .sibou-icon-card:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: var(--app-accent);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    }

body[data-bs-theme="dark"] .sibou-icon-card:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.sibou-icon-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 16px;
    transition: transform 0.2s;
}

.sibou-icon-card:hover img {
    transform: scale(1.1);
}

.sibou-icon-card p {
    margin: 0;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--app-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}


/* Archive Slider Styles */

.sibou-banner-slider-section {
    margin: 2rem auto 0;
    padding: 0 20px;
}

.sibou-banner-slider {
    position: relative;
}

    .sibou-banner-slider .owl-stage {
        display: flex;
        align-items: center;
    }

.sibou-banner-card {
    background: var(--app-card-bg);
    border: 1px solid var(--app-card-border);
    border-radius: var(--app-radius);
    overflow: hidden;
    box-shadow: var(--app-shadow);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

    .sibou-banner-card:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: var(--app-accent);
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.10);
    }

body[data-bs-theme="dark"] .sibou-banner-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.sibou-banner-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.sibou-banner-info {
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.sibou-banner-text {
    flex: 1;
}

.sibou-banner-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--app-text);
    margin-bottom: 4px;
}

.sibou-banner-category {
    font-size: 0.8rem;
    color: var(--app-text-secondary);
}

.sibou-banner-btn {
    background: var(--app-accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.45rem 1.4rem;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .sibou-banner-btn:hover {
        background: #2563eb;
        color: #fff;
        transform: scale(1.05);
    }

.sibou-banner-slider .owl-item .active {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Navbar Styles */

.sibou-navbar {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 1040;
    background: var(--nav-bg);
    backdrop-filter: var(--nav-blur);
    -webkit-backdrop-filter: var(--nav-blur);
    border: 1px solid var(--nav-border);
    border-radius: var(--nav-radius);
    box-shadow: var(--nav-shadow);
    padding: 0.6rem 1.4rem;
    transition: background var(--nav-transition), border-color var(--nav-transition), box-shadow var(--nav-transition);
}

.sibou-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

.sibou-nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

    .sibou-nav-logo img {
        height: 20px;
        width: auto;
        transition: transform 0.3s;
    }

    .sibou-nav-logo:hover img {
        transform: scale(1.05);
        filter: drop-shadow(0 0 6px var(--nav-accent));
    }

.sibou-nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sibou-nav-link {
    color: var(--nav-text) !important;
    text-decoration: none;
    padding: 0.5rem 0.9rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--nav-transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

    .sibou-nav-link:hover {
        background: var(--nav-hover);
        color: var(--nav-accent) !important;
    }

    .sibou-nav-link::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 50%;
        right: 50%;
        height: 2px;
        background: var(--nav-accent);
        border-radius: 2px;
        transition: all 0.3s ease;
        opacity: 0;
    }

    .sibou-nav-link:hover::after {
        left: 20px;
        right: 20px;
        opacity: 1;
    }

.sibou-dropdown {
    position: relative;
}

.sibou-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px) scale(0.98);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 30;
    list-style: none;
}


body[data-bs-theme="dark"] .sibou-dropdown-menu {
    background: rgba(30, 41, 59, 1);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.sibou-dropdown:hover .sibou-dropdown-menu,
.sibou-dropdown:focus-within .sibou-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.sibou-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 1rem;
    color: var(--nav-text);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all 0.2s;
    position: relative;
}

    .sibou-dropdown-item i {
        width: 20px;
        text-align: center;
        color: var(--nav-accent);
        font-size: 0.95rem;
        transition: transform 0.2s;
    }

    .sibou-dropdown-item:hover {
        background: var(--nav-hover);
        color: var(--nav-accent);
        padding-right: 1.5rem;
    }

        .sibou-dropdown-item:hover i {
            transform: scale(1.15);
        }

    .sibou-dropdown-item::before {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        background: var(--nav-accent);
        border-radius: 3px;
        transition: height 0.2s;
    }

    .sibou-dropdown-item:hover::before {
        height: 18px;
    }

.sibou-nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sibou-nav-btn {
    background: transparent;
    border: 1px solid var(--nav-border);
    color: var(--nav-text);
    padding: 0.45rem 1.1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--nav-transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

    .sibou-nav-btn:hover {
        background: var(--nav-hover);
        border-color: var(--nav-accent);
        color: var(--nav-accent);
    }

.sibou-nav-icon-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--nav-border);
    color: var(--nav-text);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--nav-transition);
}

    .sibou-nav-icon-btn:hover {
        background: var(--nav-hover);
        border-color: var(--nav-accent);
        color: var(--nav-accent);
        transform: scale(1.05);
    }

.sibou-theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #f59e0b;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

body[data-bs-theme="dark"] .sibou-theme-toggle {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
    color: #a78bfa;
}

.sibou-theme-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.sibou-theme-toggle i {
    transition: transform 0.5s ease;
}

.sibou-theme-toggle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.sibou-theme-toggle:active::after {
    transform: scale(2);
    opacity: 0;
}

.sibou-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .sibou-search-overlay.active {
        display: flex;
    }

.sibou-search-modal {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 560px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: searchModalIn 0.3s ease;
    color: #1e293b;
    position: relative;
}

body[data-bs-theme="dark"] .sibou-search-modal {
    background: #1e293b;
    color: #f1f5f9;
}

@keyframes searchModalIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.sibou-search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem 0.5rem;
}

    .sibou-search-header h3 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
    }

.sibou-search-close {
    background: none;
    border: none;
    width: 35px;
    color: #64748b;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

    .sibou-search-close:hover {
        background: #f1f5f9;
        color: #000;
    }

body[data-bs-theme="dark"] .sibou-search-close:hover {
    background: #334155;
    color: #fff;
}

.sibou-search-body {
    padding: 1rem 1.5rem 1.5rem;
}

.sibou-search-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.sibou-search-input {
    flex: 1;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    color: #1e293b;
    outline: none;
    transition: border-color 0.2s;
}

body[data-bs-theme="dark"] .sibou-search-input {
    background: #0f172a;
    border-color: #334155;
    color: #f1f5f9;
}

.sibou-search-input:focus {
    border-color: var(--nav-accent, #3b82f6);
}

.sibou-search-submit {
    background: var(--nav-accent, #3b82f6);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

    .sibou-search-submit:hover {
        background: #2563eb;
    }

.sibou-search-suggestions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sibou-suggestions-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 4px;
}

.sibou-suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sibou-suggestion-tag {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.85rem;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body[data-bs-theme="dark"] .sibou-suggestion-tag {
    background: #334155;
    border-color: #475569;
    color: #cbd5e1;
}

.sibou-suggestion-tag:hover {
    background: #fff;
    border-color: var(--nav-accent, #3b82f6);
    color: var(--nav-accent, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

body[data-bs-theme="dark"] .sibou-suggestion-tag:hover {
    background: #1e293b;
}

.sibou-hamburger {
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--nav-transition);
    padding: 0;
    z-index: 1060;
    position: relative;
}

    .sibou-hamburger span {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--nav-text);
        border-radius: 2px;
        position: relative;
        transition: all 0.3s ease;
    }

        .sibou-hamburger span::before,
        .sibou-hamburger span::after {
            content: '';
            position: absolute;
            left: 0;
            width: 20px;
            height: 2px;
            background: var(--nav-text);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .sibou-hamburger span::before {
            top: -6px;
        }

        .sibou-hamburger span::after {
            top: 6px;
        }

    .sibou-hamburger.active span {
        background: transparent;
    }

        .sibou-hamburger.active span::before {
            top: 0;
            transform: rotate(45deg);
        }

        .sibou-hamburger.active span::after {
            top: 0;
            transform: rotate(-45deg);
        }

.sibou-mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--nav-border, rgba(0, 0, 0, 0.08));
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 0.8rem;
    z-index: 1050;
    list-style: none;
    margin: 0;
    flex-direction: column;
    gap: 2px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
}

body[data-bs-theme="dark"] .sibou-mobile-menu {
    background: rgba(30, 41, 59, 0.92);
}

.sibou-mobile-menu.active {
    max-height: 450px;
    opacity: 1;
    transform: translateY(0);
    padding: 0.8rem;
    display: flex;
}

.sibou-mobile-menu .sibou-nav-link {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    justify-content: flex-start;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--nav-text);
    transition: background 0.2s;
}

    .sibou-mobile-menu .sibou-nav-link:hover {
        background: var(--nav-hover);
    }

.sibou-mobile-menu > li:not(:last-child) {
    border-bottom: 1px solid var(--nav-border);
}

.sibou-mobile-menu .sibou-nav-link i:first-child {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    color: var(--nav-accent);
}

.sibou-mobile-menu .sibou-nav-link .fa-chevron-down {
    margin-right: auto;
    transition: transform 0.3s;
}

.sibou-mobile-menu .sibou-dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
}

.sibou-mobile-menu .sibou-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin: 0;
}

.sibou-mobile-menu .sibou-dropdown.active .sibou-dropdown-menu {
    max-height: 200px;
}

.sibou-mobile-menu .sibou-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 1rem;
    color: var(--nav-text);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: background 0.2s;
}

    .sibou-mobile-menu .sibou-dropdown-item:hover {
        background: var(--nav-hover);
        color: var(--nav-accent);
    }




@media (max-width: 991px) {
    .sibou-mobile-menu {
        display: flex;
    }
}

@media (max-width: 991px) {
    .sibou-navbar {
        padding: 0.5rem 1rem;
        border-radius: 50px;
    }

    .sibou-nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .sibou-nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        bottom: 0;
        background: var(--nav-bg);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid var(--nav-border);
        padding: 5rem 1.5rem 2rem;
        flex-direction: column;
        gap: 8px;
        z-index: 1060;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

        .sibou-nav-menu.active {
            right: 0;
        }

    .sibou-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 1.2rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .sibou-dropdown.active .sibou-dropdown-menu {
        display: block;
    }

    .sibou-nav-actions .sibou-nav-btn {
        display: none;
    }

    .sibou-nav-actions .sibou-theme-switch {
        margin-left: 4px;
    }
}

@media (max-width: 768px) {
    .sibou-store-slide {
        height: 240px;
    }

    .sibou-store-slide-content h3 {
        font-size: 1.3rem;
    }

    .sibou-banner-img {
        height: 140px;
    }

    .sibou-search-input-group {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .sibou-app-card {
        flex-wrap: wrap;
        padding: 1rem;
        gap: 8px;
        position: relative;
        margin: auto;
        max-width: 320px;
        width: 100%;
    }

    .sibou-app-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .sibou-app-info {
        flex: 1;
        min-width: 0;
    }

    .sibou-app-btn {
        width: 100%;
        text-align: center;
        margin-top: 6px;
        order: 3;
        padding: 0.6rem;
        font-size: 0.85rem;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--app-accent), #2563eb);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        transition: all 0.2s;
    }

    .sibou-banner-info {
        flex-direction: column;
        align-items: stretch;
    }

    .sibou-banner-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .sibou-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 1.2rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        margin: 0;
        display: block;
    }

    .sibou-dropdown.active .sibou-dropdown-menu {
        max-height: 250px;
        opacity: 1;
    }

    .sibou-mobile-menu .sibou-dropdown.active .sibou-dropdown-menu {
        max-height: 200px;
        margin: 10px 5px;
    }
}

@media (max-width: 480px) {
    .sibou-store-slide {
        height: 200px;
    }

    .sibou-store-slide-content {
        padding: 1.2rem;
    }

    .sibou-store-slide-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }

    .sibou-store-alert {
        font-size: .75rem;
    }

    .sibou-apps-section {
        margin: 2rem auto 0;
        padding: 20px 15px;
    }

    .sibou-app-name {
        font-size: 0.85rem;
    }

    .sibou-apps-title {
        font-size: 1rem;
    }

    .sibou-apps-all {
        font-size: 0.75rem;
    }
}
