@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://pro.fontawesome.com/releases/v5.13.1/css/all.css');

:root {
    --bg-main: #000000;
    --bg-soft: #0a0a0b;
    --bg-card: #0f1012;
    --text-main: #ffffff;
    --text-soft: #617292;
    --border-color: rgba(255, 255, 255, 0.08);
    --accent-blue: #0062ff;
    --accent-green: #10b981;
    --primary: #0062ff;
    --success: #22da8d;
    --dark: #000000;
    --dark2: #050505;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

body.light-theme {
    --bg-main: #ffffff;
    --bg-soft: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-soft: #64748b;
    --border-color: rgba(0, 0, 0, 0.08);
    --dark: #ffffff;
    --dark2: #f1f5f9;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    --footer-bg: #f8fafc;
    --card-bg: #ffffff;
    --input-bg: #f1f5f9;
    --input-text: #0f172a;
    --input-border: rgba(0, 0, 0, 0.1);
}

:root {
    --footer-bg: #000000;
    --card-bg: #0f1012;
    --input-bg: #1a1a1b;
    --input-text: #ffffff;
    --input-border: #2d2d2d;
}

body {
    background: var(--bg-main);
    color: var(--text-soft);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: background 0.3s ease, color 0.3s ease;
}

.text-dark {
    color: var(--dark);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background: var(--primary) !important;
}

.bg-dark2 {
    background: var(--dark2) !important;
}

.nav-item {
    color: #617292;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.nav-item:hover,
.nav-link:hover {
    color: var(--primary) !important;
    text-shadow: 0px 0px 10px var(--primary);
    border-bottom: .5px solid var(--primary);
}

.button {
    display: inline-block;
    color: white;
    text-align: center;
    vertical-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    padding: .375rem .75rem;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .45rem;
    border: none;
    font-family: 'Montserrat', sans-serif;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.button-classic {
    border: 1px solid rgba(255, 255, 255, 0.041);
    background-color: transparent !important;
}

.button-classic:hover {
    box-shadow: unset;
    border: 1px solid rgba(255, 255, 255, 0.141);
}

.button-primary {
    box-shadow: 0px 0px 8px 0px var(--primary);
    background: var(--primary);
}

.button-primary:hover {
    box-shadow: 0px 0px 10px 0px var(--primary);
    background: #0056e0;
}


.button-success {
    box-shadow: 0px 0px 8px 0px var(--success);
    background: var(--success);
}

.button-success:hover {
    box-shadow: 0px 0px 10px 0px var(--success);
    background: #14c078;
}

.font-oswald {
    font-family: 'Montserrat', sans-serif;
}

.font-teko {
    font-family: 'Montserrat', sans-serif;
}

.text-spacing-05 {
    letter-spacing: .5px;
}

.text-spacing-1 {
    letter-spacing: 1px;
}

.title {
    color: white;
    border-radius: 2px;
    padding-left: 12px;
    padding-top: 3px;
    border-left: 4px solid var(--primary);
}

.product-card-img {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
}

.product-page-img {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
}

.product-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-soft);
}

.product-page-content {
    display: block;
}

.product-page-card {
    border: 1px solid var(--border-color);
    background: var(--bg-card);
}

hr {
    margin-top: 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.041);
}

.footer {
    border-top: 1px solid var(--border-color);
    background: var(--bg-main);
}

.form-control {
    padding: .85rem;
    color: var(--text-main);
    height: unset;
    border-radius: 7px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-main) !important;
}

.form-control:focus {
    box-shadow: unset;
    border: 1px solid #0062ff;
}

/* Consolidating and using theme variables */
:root {
    --bs-blue: #3b82f6;
    --bs-primary: #0062ff;
}

.fp-product-item {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-soft);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.fp-product-item .img {
    display: block;
    overflow: hidden;
    position: relative;
    padding-bottom: 100%;
}

.fp-product-item .img .img-aspect {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.fp-product-item .img img {
    transition: 0.2s;
    object-fit: cover;
}

.fp-product-item .img:hover img {
    transform: scale(1.05);
}

.fp-product-item .content {
    padding: 10px;
}

.fp-product-item .content .product-name {
    font-size: 14px;
    display: block;
    color: var(--text-main);
    font-weight: 500;
    transition: 0.2s;
    height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fp-product-item .content .product-name:hover {
    color: #0089FF;
}

.fp-product-item .price {
    margin-top: 5px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.fp-product-item .price .price-new {
    font-weight: 500;
}

.fp-product-item .price .price-old {
    font-weight: 400;
    text-decoration: line-through;
    color: var(--text-soft);
    font-size: 14px;
    margin-left: 8px;
    position: relative;
    bottom: 0.5px;
    opacity: 0.6;
}

.fp-product-item .seller {
    margin-top: 10px;
    background-color: var(--bg-white-2);
    color: var(--text-color);
    padding: 4px 10px;
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.fp-product-item .seller .img-seller {
    height: 28px;
    width: 28px;
    min-width: 28px;
    object-fit: cover;
    border-radius: 100%;
    margin-right: 8px;
}

.fp-product-item .seller .seller-content .key {
    color: #656565;
    font-size: 12px;
    margin-bottom: -2px;
}

.fp-product-item .seller .seller-content .value {
    font-size: 13px;
}

.fp-product-item .seller .icon {
    color: #B4B4B4;
    right: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.button:hover {
    text-decoration: none;
    color: white;
}


.fp-categories-item {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    transition: 0.2s;
}

.fp-categories-item:hover {
    transform: translateY(-5px);
}

.fp-categories-item::before {
    content: "";
    display: block;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
    z-index: 2;
    position: absolute;
    bottom: 0;
    left: 0;
}

.fp-categories-item .img {
    padding-bottom: 125%;
    position: relative;
    z-index: 1;
}

.fp-categories-item .img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-categories-item .name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    color: #fff;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

body.light-theme .fp-categories-item .name {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

body.light-theme .fp-categories-item::before {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
}



/* --- Precice Site Header Reconstruction --- */

.site-header {
    background: var(--bg-soft);
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid var(--border-color);
}

.header-top {
    height: 36px;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.header-top-link {
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
}

.header-top-link i {
    color: var(--accent-blue);
    font-size: 15px;
}

.header-top-link:hover {
    color: var(--accent-blue);
}

.header-top-link:hover i {
    filter: brightness(1.2);
}

.top-divider {
    width: 1.5px;
    height: 14px;
    background: var(--border-color);
    margin: 0 5px;
}

/* Header Middle */
.header-middle {
    padding: 20px 0;
    background: var(--bg-soft);
    position: relative;
    z-index: 2;
}

.logo-box img {
    height: 38px;
    width: auto;
    transition: filter 0.3s ease;
}

body.light-theme .logo-box img,
body.light-theme .sidebar-header img {
    filter: brightness(0) invert(0);
}

@media (max-width: 991px) {
    .logo-box img {
        height: 28px;
    }
}

/* Search Redesign */
.search-wrapper {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
}

.modern-search {
    position: relative;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    padding: 2px;
    transition: all 0.3s ease;
}

.modern-search:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.modern-search input {
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    outline: none !important;
}

.modern-search input::placeholder {
    color: var(--text-soft);
    opacity: 0.6;
}

.search-action-btn {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-action-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
}

/* User Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-icon-btn {
    width: 42px;
    height: 42px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.action-icon-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--primary-blue);
}

@media (max-width: 991px) {
    .header-actions {
        gap: 8px;
    }

    .action-icon-btn {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
}

.badge-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid var(--bg-soft);
}

.auth-btns {
    display: flex !important;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: center;
    flex-shrink: 0;
}

.btn-modern {
    height: 44px;
    padding: 0 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: none;
}

@media (max-width: 991px) {
    .btn-modern {
        height: 38px;
        padding: 0 12px;
        font-size: 13px;
        border-radius: 10px;
    }

    .auth-btns {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .btn-modern {
        padding: 0 8px;
        font-size: 11px;
        gap: 4px;
        height: 34px;
    }

    .header-actions {
        gap: 4px;
    }

    .logo-box img {
        height: 22px;
    }
}

.btn-login {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue) !important;
}

.btn-login:hover {
    background: var(--accent-blue);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.btn-register {
    background: var(--accent-green);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-register:hover {
    background: #0d9668;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
    transform: translateY(-2px);
}

/* Header Bottom / Nav */
.header-bottom {
    background: var(--bg-soft);
    border-top: 1px solid var(--border-color);
    padding: 0;
    position: relative;
    z-index: 1;
}

.nav-container {
    display: flex;
    align-items: center;
}

.all-cats-dropdown {
    background: #0089FF;
    color: #fff !important;
    height: 44px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 137, 255, 0.2);
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.all-cats-dropdown:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 137, 255, 0.3);
    filter: brightness(1.05);
}

.all-cats-dropdown i {
    font-size: 18px;
}

.main-nav-wrapper {
    flex: 1;
    overflow: hidden;
}

.main-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0 20px;
    gap: 5px;
    width: 100%;
}

.nav-item-modern {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 12px;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    gap: 8px;
    position: relative;
    white-space: nowrap;
}

.nav-item-modern:hover {
    color: var(--accent-blue);
}

.nav-icon-box {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(120, 120, 128, 0.1);
    transition: all 0.2s ease;
}

.light-theme .nav-icon-box {
    background: rgba(0, 0, 0, 0.04);
}

.nav-item-modern:hover .nav-icon-box {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.nav-item-modern .nav-icon-box img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.nav-item-modern .nav-icon-box i {
    font-size: 20px;
    color: var(--accent-blue);
}

.nav-arrow {
    font-size: 16px;
    opacity: 0.3;
    margin-left: -2px;
    transition: all 0.2s ease;
}

.nav-item-modern:hover .nav-arrow {
    opacity: 0.8;
    transform: translateY(1px);
}

.nav-badge {
    position: absolute;
    top: 8px;
    right: 0;
    background: var(--primary-blue);
    color: #fff;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
}

.nav-badge.orange {
    background: #f59e0b;
}

.nav-badge.cyan {
    background: #06b6d4;
}

/* Sticky Header Effect */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .search-wrapper {
        display: none;
    }

    .header-bottom {
        display: none;
    }

    .header-middle {
        padding: 15px 0;
    }

    .no-scrollbar::-webkit-scrollbar {
        display: none;
    }

    .no-scrollbar {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
}

/* Custom Modern Modal Styles */
.custom-modern-modal .modal-content {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.custom-modern-modal .modal-header {
    border-bottom: 1px solid var(--border-color) !important;
    padding: 20px 24px;
}

.custom-modern-modal .modal-header .modal-title {
    color: var(--text-main) !important;
    font-size: 1.25rem;
    font-weight: 700;
}

.custom-modern-modal .modal-header .close span {
    color: var(--text-main) !important;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.custom-modern-modal .modal-header .close:hover span {
    opacity: 1;
}

.custom-modern-modal .modal-body {
    padding: 24px;
}

.custom-modern-modal .modal-footer {
    border-top: 1px solid var(--border-color) !important;
    padding: 20px 24px;
}

/* Modern Input Styles */
.modern-input {
    background: var(--bg-soft) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 10px !important;
    color: var(--text-main) !important;
    padding: 12px 16px !important;
    transition: all 0.3s ease !important;
}

.modern-input:focus {
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1) !important;
    background: var(--bg-main) !important;
}

.modern-input::placeholder {
    color: var(--text-soft) !important;
}

.modern-input-label {
    display: block;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block;
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }
}

.mobile-sidebar {
    display: none;
}

/* --- Mobile Optimization --- */
@media (max-width: 991px) {
    .header-top {
        display: none;
    }

    .header-middle {
        padding: 25px 0;
    }

    .header-middle .container {
        padding: 0 15px !important;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-header-row {
        width: 100%;
        display: flex !important;
        flex-direction: column;
        gap: 40px;
        /* Maximum vertical gap for complete separation */
        padding: 0 5px;
    }

    .mobile-header-row .square-btn {
        height: 36px;
        padding: 0 10px;
        font-size: 10px;
        border-radius: 8px;
    }

    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        z-index: 9998;
        display: none;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .sidebar-overlay.active {
        display: block;
        opacity: 1;
    }

    .mobile-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 360px;
        height: 100vh;
        background: var(--bg-card);
        backdrop-filter: blur(20px);
        z-index: 9999;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: block !important;
        overflow-y: auto;
        border-left: 1px solid var(--border-color);
        box-shadow: -15px 0 45px rgba(0, 0, 0, 0.2);
    }

    .mobile-sidebar.active {
        right: 0;
    }

    .sidebar-header {
        padding: 20px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.01);
    }

    .sidebar-close-btn {
        width: 44px;
        height: 44px;
        background: var(--bg-soft);
        border: 1px solid var(--border-color);
        color: var(--text-main);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .sidebar-close-btn:hover {
        background: rgba(59, 130, 246, 0.15);
        border-color: #3b82f6;
        color: #3b82f6;
        transform: rotate(90deg);
    }

    .user-sidebar-box {
        background: var(--bg-soft);
        border: 1px solid var(--border-color) !important;
        border-radius: 16px !important;
        padding: 24px !important;
        margin-bottom: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .sidebar-auth-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .sidebar-btn-login {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        color: var(--accent-blue);
        height: 52px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        text-decoration: none !important;
        font-size: 16px;
        transition: 0.2s;
    }

    .sidebar-btn-register {
        background: var(--accent-green);
        color: #fff;
        height: 52px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        text-decoration: none !important;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    }

    .sidebar-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 25px;
    }

    .sidebar-nav-link {
        padding: 16px !important;
        border-radius: 16px !important;
        background: var(--bg-soft);
        border: 1px solid var(--border-color) !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 12px;
        text-decoration: none !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        min-height: 100px;
    }

    .sidebar-nav-link:hover, .sidebar-nav-link:active {
        background: rgba(59, 130, 246, 0.1);
        border-color: rgba(59, 130, 246, 0.3) !important;
        transform: translateY(-2px);
    }

    .sidebar-nav-link .nav-icon-box {
        margin-right: 0 !important;
        width: 44px !important;
        height: 44px !important;
        background: rgba(59, 130, 246, 0.08) !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease;
    }

    .sidebar-nav-link:hover .nav-icon-box {
        background: var(--accent-blue) !important;
        transform: scale(1.1);
    }

    .sidebar-nav-link:hover .nav-icon-box i {
        color: #fff !important;
    }

    .sidebar-nav-link:hover .nav-icon-box img {
        filter: brightness(0) invert(1);
    }

    .sidebar-nav-link span {
        font-weight: 700;
        font-size: 13px;
        color: var(--text-main);
        letter-spacing: 0.2px;
    }

    .sidebar-nav-link i {
        font-size: 22px;
        color: var(--accent-blue);
        transition: all 0.3s ease;
    }

    /* Full width links for non-grid items */
    .sidebar-nav-link.full-width {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        min-height: auto;
        padding: 14px 20px !important;
    }

    .sidebar-nav-link.full-width .nav-icon-box {
        width: 38px !important;
        height: 38px !important;
    }

}

body.body-lock {
    overflow: hidden !important;
}

@media (min-width: 992px) {
    .mobile-only {
        display: none !important;
    }
}

/* --- End Site Header Reconstruction --- */


.sidebar {
    width: 100%;
    min-height: 100vh;
    background: #1e232d;
}

.sidebar .nav-link {
    color: #adb5bd;
    border-radius: 6px;
}

.sidebar .nav-link.active,
.sidebar .nav-link:hover {
    background: #0d6efd;
    color: #fff !important;
}

.content {
    padding: 25px;
}



/* popup modal */

.urunpopup.modal .modal-content {
    background-color: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.urunpopup .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #71767d;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.urunpopup .close-btn:hover {
    color: #ffffff;
    transform: rotate(90deg);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.urunpopup .header {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.urunpopup .logo-box {
    width: 50px;
    height: 50px;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
}

.urunpopup .logo-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.urunpopup .title-area h2 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.urunpopup .title-area p {
    color: #8a8f98;
    font-size: 13px;
}

.urunpopup .product-preview {
    margin: 0 24px 20px 24px;
    padding: 16px;
    background-color: #181b1f;
    border-radius: 14px;
    border: 1px solid #2a2d31;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.urunpopup .product-preview:hover {
    border-color: #ff4655;
    transform: translateY(-2px);
}

.urunpopup .product-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--bg-main);
}

.urunpopup .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.urunpopup .product-img i {
    color: var(--accent-blue);
    font-size: 24px;
}

.urunpopup .product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.urunpopup .product-info .p-name {
    color: var(--text-main);
    font-weight: 700;
    font-size: 15px;
}

.urunpopup .product-info .p-price {
    color: var(--accent-blue);
    font-weight: 800;
    font-size: 18px;
}

.urunpopup .content {
    padding: 10px 24px 24px 24px;
    text-align: center;
}

.urunpopup .content p {
    color: #9ca3af;
    font-size: 12px;
    line-height: 1.6;
}

.urunpopup .content a {
    color: #3b82f6;
    text-decoration: none;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    transition: 0.3s;
}

.urunpopup .footer-btns {
    padding: 0 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.urunpopup .btn-group {
    display: flex;
    gap: 12px;
    width: 100%;
}

.urunpopup .btn {
    flex: 1;
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;


    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.urunpopup .btn:active {
    transform: scale(0.96);
}

.urunpopup .btn-card {
    background-color: rgba(0, 123, 255, 0.1);
    color: #58a6ff;
    border-color: rgba(0, 123, 255, 0.2);
}

.urunpopup .btn-card:hover {
    background-color: rgba(0, 123, 255, 0.2);
    border-color: #007bff;
    color: #fff;
}

.urunpopup .btn-balance {
    background-color: rgba(0, 255, 157, 0.08);
    color: #00ff9d;
    border-color: rgba(0, 255, 157, 0.15);
}

.urunpopup .btn-balance:hover {
    background-color: rgba(0, 255, 157, 0.15);
    border-color: #00ff9d;
    color: #fff;
}

.urunpopup .btn-cart {
    background-color: rgba(250, 204, 21, 0.08);
    color: #facc15;
    border-color: rgba(250, 204, 21, 0.2);
    width: 100%;
}

.urunpopup .btn-cart:hover {
    background-color: rgba(250, 204, 21, 0.15);
    border-color: #facc15;
    color: #fff;
}

.urunpopup .btn-cart.added {
    background-color: rgba(0, 255, 157, 0.2) !important;
    color: #00ff9d !important;
    border-color: #00ff9d !important;
    pointer-events: none;
}

.urunpopup .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.6s;
}

.urunpopup .btn:hover::after {
    left: 100%;
}

.urunpopup .error-screen {
    display: none;
    padding: 30px;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.urunpopup .error-icon {
    color: #ff4655;
    font-size: 40px;
    margin-bottom: 12px;
}

.urunpopup .error-title {
    color: #ff4655;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.urunpopup .info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #1f2329;
    color: #9ca3af;
    font-size: 13px;
}

.urunpopup .btn-back {
    background: rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.urunpopup .btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

body.light-theme .urunpopup .title-area h2,
body.light-theme .urunpopup .product-info .p-name,
body.light-theme .urunpopup .content p,
body.light-theme .urunpopup .info-row,
body.light-theme .urunpopup .btn-back {
    color: black;
}

body.light-theme .urunpopup.modal .modal-content {
    background-color: #f8f8f8;
    border: 1px solid #f8f8f8;
}

body.light-theme .urunpopup .product-preview {
    background-color: #eaeaea;
    border: 1px solid #d5d5d5;
}

body.light-theme .urunpopup .btn-cart:hover {
    color: rgba(255, 187, 0, 1);
}

body.light-theme .urunpopup .btn-balance {
    color: #0e4f36;
}

body.light-theme .urunpopup .btn-cart {
    color: #9b7e0d;
}



body.light-theme .urunpopup .close-btn:hover {
    color: #000000;
    background-color: rgba(0, 0, 0, 0.05);
}





/* Slider Area */
.fp-slider-area {
    padding: 30px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.fp-slider-area .grid {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 20% 60% 20%;
    max-width: calc(100% - 20px);
}

@media (max-width: 768px) {
    .fp-slider-area {
        padding: 20px 0;
    }
}

@media (max-width: 992px) {
    .fp-swiper-home {
        margin-bottom: 15px;
    }
}

.fp-swiper-home-item {
    padding-bottom: 42.5%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.fp-swiper-home-item::before {
    content: '';
    height: 100%;
    width: 60%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.61) 0%, rgba(107, 107, 107, 0) 100%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    left: 0;
    z-index: 2;
}

.fp-swiper-home-item .img-cover {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.fp-swiper-home-item .content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 400px;
    left: 40px;
    color: #fff;
    z-index: 3;
}

@media (max-width: 576px) {
    .fp-swiper-home-item .content {
        left: 24px;
    }
}

@media (max-width: 576px) {
    .fp-swiper-home-item .content .title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .fp-swiper-home-item .content p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .fp-swiper-home-item .content .btn {
        height: 38px;
        font-size: 13px;
        padding: 5px 16px;
    }
}

.autoplay-progress {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 10;
    width: 50px;
    height: 50px;


    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.autoplay-progress span {
    display: none;
}

@keyframes image-rotate {
    0% {
        transform: rotate(0deg);
    }

    98% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.autoplay-progress img {
    height: 34px;
    width: 34px;
    object-fit: contain;
    display: inline-block;
    animation: image-rotate 5s linear infinite;
}

@media (max-width: 1200px) {
    .autoplay-progress {
        left: 10px;
        bottom: 10px;
    }
}

@media (max-width: 576px) {
    .autoplay-progress {
        left: inherit;
        right: 10px;
    }
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 2px;
    stroke: #fff;
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

@media (max-width: 992px) {
    .fp-home-slider-mini-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }
}

.fp-home-slider-mini {
    padding-bottom: calc(65.5% - 10px);
    position: relative;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .fp-home-slider-mini {
        margin-bottom: 0;
        padding-bottom: 56.25%;
    }
}

.fp-home-slider-mini::before {
    content: '';
    height: 100%;
    width: 60%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(107, 107, 107, 0) 100%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    left: 0;
    z-index: 2;
}

.fp-home-slider-mini .img-cover {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.fp-home-slider-mini .content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 190px;
    left: 30px;
    color: #fff;
    z-index: 3;
}

@media (max-width: 1200px) {
    .fp-home-slider-mini .content {
        left: 20px;
    }
}

@media (max-width: 576px) {
    .fp-home-slider-mini .content {
        left: 12px;
    }
}

.fp-home-slider-mini .content .title {
    font-size: 20px;
    font-weight: 500;
}

@media (max-width: 576px) {
    .fp-home-slider-mini .content .title {
        font-size: 14px;
        margin-bottom: 5px;
    }
}

.fp-home-slider-mini .content p {
    font-size: 14px;
}

.fp-home-slider-mini-grid a:last-child .fp-home-slider-mini {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .fp-home-slider-mini .content p {
        font-size: 10px;
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .fp-home-slider-mini .content .btn {
        height: 24px;
        font-size: 10px;
        padding: 2px 10px;
    }
}

@media (max-width: 992px) {
    .fp-slider-area .grid {
        grid-template-columns: 100%;
        max-width: 100%;
    }

    .fp-home-slider-mini-grid {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-gap: 1em;
        max-width: calc(100% - 1em);
    }
}


.slider-background {
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    z-index: 0;
    transition: background-image 0.5s ease-in-out;
}

@media screen and (max-width: 768px) {
    .slider-background {
        height: 200px;
        top: 280px;
    }
}

.menulink {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menulink img {
    height: 20px;
}


/* Force Swiper Horizontal Layout */
.fp-swiper-home {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.fp-swiper-home .swiper-wrapper {
    display: flex;
    flex-direction: row;
    /* Ensure row direction */
    width: 100%;
    height: 100%;
    box-sizing: content-box;
}

.fp-swiper-home .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;

}


/* New Category Bar Style */
.category-block {
    margin-bottom: 50px;
}

.category-bar-new {
    background: rgba(15, 16, 18, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 24px 35px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.category-bar-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #0062ff, #10b981);
    box-shadow: 0 0 15px rgba(0, 98, 255, 0.5);
}

.category-bar-new .cat-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.category-img-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.category-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-bar-new:hover .category-img-box img {
    transform: scale(1.15) rotate(3deg);
}

.category-title-new {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.category-desc-new {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    font-weight: 500;
}

.category-btn-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-btn-new:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
    filter: brightness(1.1);
}

.category-btn-new i {
    font-size: 20px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.category-btn-new:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .category-block {
        margin-bottom: 30px;
    }

    .category-bar-new {
        padding: 12px 18px;
        border-radius: 12px;
    }

    .category-title-new {
        font-size: 14px;
    }

    .category-desc-new {
        display: none;
    }

    .category-bar-new .cat-info {
        gap: 12px;
    }

    .category-img-box {
        width: 38px;
        height: 38px;
        border-radius: 8px;
    }

    .category-btn-new {
        padding: 10px 16px;
        font-size: 11px;
        border-radius: 8px;
    }

    .category-btn-new i {
        font-size: 16px;
        margin-left: 6px;
    }

}

/* Giveaway Styles */
.giveaway-card {
    background: #111111;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.giveaway-card:hover {
    transform: translateY(-5px);
}

.giveaway-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.announcer-img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 15px;
}

.announcer-info .badge-streamer {
    display: inline-flex;
    align-items: center;
    background: #0062ff;
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.announcer-info .streamer-name {
    display: block;
    color: white;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.announcer-info .giveaway-title {
    display: block;
    color: #22da8d;
    font-size: 12px;
    font-weight: 600;
}

.giveaway-timer {
    background: #1a1a1a;
    padding: 8px 15px;
    text-align: center;
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 500;
}

.giveaway-rewards-grid {
    padding: 20px;
    background: #0a0a0a;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.reward-card {
    position: relative;
    width: calc(33.33% - 7px);
    aspect-ratio: 1/1;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reward-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reward-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #22da8d;
    color: #000;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
}

.reward-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 9px;
    padding: 4px;
    text-align: center;
    font-weight: 600;
}

.giveaway-footer-info {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item {
    text-align: center;
}

.info-val {
    display: block;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.info-label {
    display: block;
    color: #617292;
    font-size: 11px;
}

.giveaway-actions {
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
}

/* Premium Product Card Updates - High Quality Modern Look */
.fp-product-item {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(18, 19, 23, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 24px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto !important;
}

.fp-product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.08);
}

.fp-product-item .img {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #000;
}

.fp-product-item .img img {
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.fp-product-item:hover .img img {
    transform: scale(1.05);
}

.fp-product-item .content {
    padding: 10px 12px 8px 12px !important;
    display: flex;
    flex-direction: column;
    z-index: 2;
    background: transparent;
}

.fp-product-item .product-name {
    font-size: 13px !important;
    font-weight: 700;
    margin-bottom: 6px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    min-height: 16px;
    overflow: hidden;
    color: #fff !important;
    line-height: 1.2 !important;
    transition: color 0.3s ease;
    text-transform: uppercase;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    text-align: center;
}

.fp-product-item:hover .product-name {
    color: #0062ff !important;
}

.price-box-new {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 6px;
    text-align: center;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.price-box-new .current-price {
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.btn-buy-premium {
    background: linear-gradient(135deg, #00a86b 0%, #008f5a 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 8px !important;
    font-weight: 800 !important;
    font-size: 11px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none !important;
}

.btn-buy-premium:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 168, 107, 0.3);
}

.btn-buy-premium i {
    font-size: 14px;
    margin-right: 5px;
}

/* Light Theme Overrides for Listings */
body.light-theme .fp-product-item {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body.light-theme .fp-product-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.12);
}

body.light-theme .fp-product-item .product-name {
    color: #0f172a !important;
}

body.light-theme .fp-product-item .content {
    background: #ffffff;
}

body.light-theme .price-box-new {
    background: #f1f5f9;
    border-color: rgba(0, 0, 0, 0.04);
}

body.light-theme .price-box-new .current-price {
    color: #0f172a;
}

body.light-theme .category-bar-new {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-theme .category-title-new {
    color: #0f172a;
    text-shadow: none;
}

body.light-theme .category-desc-new {
    color: #64748b;
}

body.light-theme .category-img-box {
    background: #f1f5f9;
    border-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .badge-frame {
    background: rgba(0,0,0,0.4); /* Slightly darker for contrast on white */
}

@media (max-width: 576px) {
    .fp-product-item .content {
        padding: 8px 10px 8px 10px !important;
    }
    
    .fp-product-item .product-name {
        font-size: 11px !important;
        margin-bottom: 4px !important;
    }
    
    .price-box-new {
        padding: 4px;
        margin-bottom: 6px;
    }
    
    .btn-buy-premium {
        padding: 6px !important;
        font-size: 10px !important;
        border-radius: 6px !important;
    }

    .fp-product-item .d-flex.mt-2 {
        margin-top: 5px !important;
        margin-bottom: 0 !important;
    }
}

/* Card image adjustments - Overriding redundant definitions */

.badge-frame {
    position: relative;
    width: calc(100% + 2px);
    margin: -1px -1px 0 -1px;
    padding: 8px 15px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.badge-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    animation: shine-frame 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes shine-frame {
    0% { left: -150%; }
    15% { left: 150%; }
    100% { left: 150%; }
}

.badge-frame span {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 3;
    display: inline-block;
}

@keyframes textShine {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* --- Premium Modern Gaming Footer --- */
.footer-new {
    background: var(--footer-bg);
    color: var(--text-soft);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-top: 2px;
}

/* Accent Glow Top */
.footer-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 98, 255, 0) 0%, rgba(0, 114, 255, 1) 50%, rgba(0, 98, 255, 0) 100%);
    box-shadow: 0 0 20px rgba(0, 98, 255, 0.8), 0 0 40px rgba(0, 98, 255, 0.4);
    z-index: 10;
}

.footer-features {
    padding: 50px 0 30px;
    background: var(--footer-bg);
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-soft);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    position: relative;
}

.feature-icon-wrapper i {
    font-size: 24px;
    filter: drop-shadow(0 0 8px currentColor);
}

.feature-text h6 {
    color: var(--text-main);
    font-weight: 800;
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.8px;
}

.feature-text p {
    margin: 4px 0 0;
    font-size: 12px;
    color: #617292;
    font-weight: 500;
}

.footer-main {
    padding: 40px 0;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 900;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-logo-text i {
    color: #0062ff;
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(0, 98, 255, 0.6));
}

.footer-about-text {
    color: #617292;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 13px;
    font-weight: 400;
}

.footer-socials {
    display: flex;
    gap: 18px;
}

.social-icon-btn {
    color: #0062ff;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon-btn:hover {
    color: #ffffff;
    transform: scale(1.3);
    filter: drop-shadow(0 0 10px #0062ff);
}

.footer-heading {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Custom Bullet Dot */
.footer-links li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #0062ff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 98, 255, 1);
    transition: all 0.3s ease;
}

.footer-links li:hover::before {
    background: #ffffff;
    box-shadow: 0 0 12px #ffffff;
    transform: scale(1.2);
}

.footer-links a {
    color: #0062ff;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    color: #0062ff;
    font-size: 18px;
    margin-bottom: 4px;
}

.footer-contact-text h6 {
    color: #ffffff;
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-contact-text p, .footer-contact-text a {
    margin: 0;
    font-size: 13px;
    color: #617292;
    font-weight: 500;
}

.footer-contact-text a.email-link {
    color: #0062ff;
    transition: color 0.3s ease;
}

.footer-contact-text a.email-link:hover {
    color: var(--text-main);
}

.footer-bottom {
    padding: 30px 0 50px;
    border-top: 1px solid var(--border-color);
    background: var(--footer-bg);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.footer-copyright {
    margin: 0;
    font-size: 13px;
    color: #617292;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-brand {
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-payment-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    filter: grayscale(1);
    transition: opacity 0.3s ease;
}

.footer-payment-icons:hover {
    opacity: 0.8;
}

.footer-payment-icons i {
    color: var(--text-main);
    font-size: 22px;
}

.payment-label-shopier {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    text-transform: lowercase;
    font-style: italic;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: -0.5px;
}

.footer-payment-icons i:hover {
    color: #ffffff;
}

.payment-label-shopier {
    color: #10b981;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 991px) {
    .footer-features {
        padding: 30px 0;
    }
    .footer-feature-col {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* --- FINAL CONSOLIDATED PREMIUM SEARCH STYLES --- */
.header-middle { overflow: visible !important; }
.header-middle .container { overflow: visible !important; }

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 9999;
}

.modern-search {
    background: var(--input-bg) !important;
    border: 1px solid var(--input-border) !important;
    border-radius: 50px !important;
    padding: 0 20px !important;
    height: 46px !important;
    display: flex !important;
    align-items: center !important;
    transition: border-color 0.3s, box-shadow 0.3s !important;
}

#headerSearchInput {
    flex: 1;
    background: transparent !important;
    border: none !important;
    color: var(--input-text) !important;
    font-size: 14px !important;
    padding: 0 !important;
    height: 100% !important;
    outline: none !important;
}

#headerSearchInput::placeholder {
    color: var(--text-soft) !important;
}

.search-action-btn {
    background: transparent !important;
    border: none !important;
    color: var(--text-soft) !important;
    font-size: 18px !important;
    padding-left: 10px !important;
    cursor: pointer;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 14px !important;
    box-shadow: var(--shadow) !important;
    display: none;
    max-height: 450px;
    overflow-y: auto;
    z-index: 10000;
}

.search-results-list {
    padding: 6px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 14px !important;
    gap: 15px;
    color: var(--text-main) !important;
    text-decoration: none !important;
    border-radius: 10px;
    transition: background 0.2s;
    border-bottom: 1px solid var(--border-color);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--bg-soft);
}

.result-img-box {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.result-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.result-info {
    flex: 1;
    min-width: 0;
}

.result-name {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--text-main) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.result-price {
    font-size: 13px !important;
    color: var(--text-main) !important;
    opacity: 0.8;
}

.search-result-item i {
    color: var(--text-soft);
    font-size: 20px;
    transition: transform 0.2s, color 0.2s;
}

.search-result-item:hover i {
    transform: translateX(4px);
    color: var(--primary);
}
/* --- END FINAL CONSOLIDATED PREMIUM SEARCH STYLES --- */

/* --- ULTIMATE SEARCH VISIBILITY FIX --- */
.search-results-dropdown {
    visibility: visible !important;
    opacity: 1 !important;
    border: 1px solid #4facfe !important; /* Neon blue border for visibility */
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.4) !important;
}

.search-results-dropdown.active {
    display: block !important;
}
/* --- END --- */

.no-results-found {
    padding: 20px;
    text-align: center;
    color: var(--text-soft);
    font-size: 14px;
    background: var(--bg-card);
    border-radius: 12px;
}

/* --- SEARCH NO RESULTS STYLING --- */
.search-no-results {
    padding: 20px;
    text-align: center;
    color: #888;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.search-no-results i {
    font-size: 24px;
    color: #4facfe;
}
/* Global Search/Filter Input Adaptation */
.cat-search-box input {
    background-color: var(--input-bg) !important;
    color: var(--input-text) !important;
    border: 1px solid var(--input-border) !important;
}

.category-header {
    background-color: var(--input-bg) !important;
    border: 1px solid var(--input-border) !important;
}

.category-header h3 {
    color: var(--text-main) !important;
}

body.light-theme .page-title-modern {
    color: var(--text-main) !important;
}

/* --- MODERN TABLE STYLES --- */
.modern-table {
    width: 100%;
    margin-bottom: 0;
    color: var(--text-main);
    border-collapse: separate;
    border-spacing: 0;
}

.modern-table thead th {
    background-color: var(--bg-soft);
    color: var(--text-main);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    border-top: none;
}

.modern-table tbody td {
    padding: 18px 20px;
    color: var(--text-main);
    font-size: 14px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
    border-top: none;
    transition: background-color 0.2s ease;
}

.modern-table tbody tr:last-child td {
    border-bottom: none;
}

.modern-table tbody tr:hover td {
    background-color: var(--bg-soft);
}
/* --- END --- */

/* --- FINAL REFINED PREMIUM HERO SECTION (CORNER ALIGNMENT) --- */
.hero-section-premium {
    position: relative;
    padding: 20px 0 20px;
    background: var(--bg-main);
    width: 100%;
    overflow-x: clip;
}

.premium-slider-wrapper {
    max-width: 1440px; 
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.premium-slider-glow {
    position: absolute;
    top: -6%;
    left: -6%;
    right: -6%;
    bottom: -6%;
    z-index: 0;
    filter: blur(90px) saturate(1.8) brightness(1.2);
    opacity: 0.8;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    transition: background-image 0.7s ease-in-out;
    pointer-events: none;
    transform: translateZ(0);
}

body.light-theme .premium-slider-glow {
    opacity: 0.85;
    top: -12%;
    left: -12%;
    right: -12%;
    bottom: -12%;
    filter: blur(180px) saturate(1.9) brightness(1.1); /* Açık temada çok daha belirgin ve geniş yansıma */
}

.premium-slider-container {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #110804;
    height: 520px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    border: 1px solid rgba(240, 139, 21, 0.2);
    z-index: 2;
}

.fp-swiper-home {
    width: 100%;
    height: 100%;
}

.premium-swiper-slide {
    position: relative;
    height: 100%;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
}




.slider-content-premium {
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    left: 100px;
    z-index: 10;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.slider-badge-new {
    background: linear-gradient(135deg, rgba(80, 180, 220, 0.95), rgba(60, 160, 200, 0.95));
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px; /* Sharper radius to match the target Valorant badge exactly */
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2), inset 0 0 10px rgba(255,255,255,0.2);
}

.slider-text-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slider-title-premium {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5); /* Stronger shadow since background is original image */
}

.slider-desc-premium {
    color: rgba(255,255,255,0.95);
    font-size: 18px;
    margin: 0;
    line-height: 1.4;
    max-width: 550px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* Premium Pagination Styles */
.premium-pagination {
    position: absolute !important;
    bottom: 50px !important;
    left: 100px !important;
    width: auto !important;
    display: flex !important;
    gap: 10px !important;
    z-index: 15;
}

.premium-pagination .swiper-pagination-bullet {
    width: 24px;
    height: 4px;
    border-radius: 8px;
    background: #fff;
    opacity: 0.3;
    margin: 0 !important;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-pagination .swiper-pagination-bullet-active {
    width: 60px; /* Expands when active */
    opacity: 1;
    background: #fff;
    box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

/* Integrated Game Logo Bar at the bottom */
.game-logo-bar-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    padding: 0;
}

.game-logo-bar {
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    overflow-x: auto;
    padding: 0;
    scrollbar-width: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.game-logo-bar::-webkit-scrollbar { display: none; }

.game-logo-item {
    flex: 1;
    min-width: 150px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.game-logo-item:last-child { border-right: none; }

.game-logo-item img {
    height: 34px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.35);
    transition: all 0.4s ease;
}

.game-logo-item.active {
    background: rgba(255, 255, 255, 0.03);
}

.game-logo-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ffa500;
}

.game-logo-item:hover img,
.game-logo-item.active img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.05);
}

/* Featured Categories Grid */
.featured-cats-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.horiz-cat-card {
    background: rgba(25, 26, 35, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    overflow: hidden;
    position: relative;
    height: 140px;
    display: flex;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.horiz-cat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(25, 26, 35, 0.6);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.horiz-cat-content {
    flex: 1;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
    position: relative;
}

.horiz-cat-card .cat-logo-mini {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.horiz-cat-card:hover .cat-logo-mini {
    transform: rotate(-5deg) scale(1.1);
}

.horiz-cat-card .cat-logo-mini img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.horiz-cat-name {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.horiz-cat-tag {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    margin-top: 2px;
}

/* Add a pseudo-glow for the tag */
.horiz-cat-card:hover .horiz-cat-tag {
    color: #fff;
    text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.horiz-cat-img-box {
    width: 65%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
}

.horiz-cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), filter 1.2s ease;
    filter: brightness(0.7) contrast(1.1) saturate(1.2);
}

.horiz-cat-card:hover .horiz-cat-img-box img {
    transform: scale(1.1) translateX(-10px);
    filter: brightness(0.9) contrast(1.1) saturate(1.3);
}

@media (max-width: 1200px) {
    .featured-cats-grid { grid-template-columns: repeat(2, 1fr); }
    .slider-content-premium { left: 60px !important; max-width: 500px; }
    .premium-pagination { left: 60px !important; bottom: 40px !important; }
    .slider-title-premium { font-size: 40px; }
}

@media (max-width: 768px) {
    .premium-slider-container { height: 220px; border-radius: 6px; }
    .slider-content-premium { 
        top: auto !important;
        transform: none !important;
        bottom: 35px !important; 
        left: 15px !important; 
        right: 15px !important; 
        max-width: calc(100% - 30px);
        gap: 8px; 
    }
    .slider-title-premium { font-size: 22px; line-height: 1.15; text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
    .slider-desc-premium { font-size: 13px; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
    .slider-badge-new { font-size: 10px; padding: 4px 10px; border-radius: 4px; }
    .premium-pagination { left: 15px !important; bottom: 12px !important; gap: 4px !important; }
    .premium-pagination .swiper-pagination-bullet { width: 12px; height: 3px; border-radius: 4px; }
    .premium-pagination .swiper-pagination-bullet-active { width: 24px; }

    /* Mobile 2x2 Grid for Categories */
    .featured-cats-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1px; 
        background: rgba(255,255,255,0.08);
        border-radius: 16px; 
        overflow: hidden; 
        border: 1px solid rgba(255,255,255,0.1);
        margin-top: 20px;
    }
    .horiz-cat-card {
        border-radius: 0;
        border: none;
        height: 85px;
        background: rgba(30,31,40, 0.45);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    .horiz-cat-content { 
        padding: 0 16px; 
    }
    .horiz-cat-card .cat-logo-mini { 
        width: 32px; 
        height: 32px; 
        margin-bottom: 4px; 
        padding: 6px; 
        border-radius: 10px; 
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .horiz-cat-name { 
        font-size: 11px; 
        margin-bottom: 1px;
        font-weight: 800;
        letter-spacing: 0.2px;
    }
    .horiz-cat-tag { 
        font-size: 8px;
        opacity: 0.6;
    }
    .horiz-cat-img-box {
        width: 65%;
        opacity: 0.8;
    }
    .horiz-cat-img-box img {
        filter: brightness(0.9) saturate(1.1);
    }

    .premium-slider-glow {
        top: -4%;
        left: -6%;
        right: -6%;
        bottom: -4%;
        filter: blur(40px) saturate(1.8) brightness(1.2);
        opacity: 0.85;
    }
    
    body.light-theme .premium-slider-glow {
        top: -10%;
        left: -10%;
        right: -10%;
        bottom: -10%;
        opacity: 0.85;
        filter: blur(110px) saturate(1.9) brightness(1.1);
    }
}
