/*
 * ThaiThrift Consolidated CSS File
 * Combines default Blazor/Bootstrap styles with custom branding and layout for Desktop/Mobile UI.
 */

/* --- Global Variables and Branding Colors --- */
:root {
    /* Reelov Brand Colors */
    --tt-brand-color: #ea2a51; /* Primary - Reelov Pink */
    --tt-brand-light: #f06283; /* Lighter shade of primary */
    --tt-brand-secondary: #6b757d; /* Secondary - Gray */
    --tt-brand-success: #02a393; /* Success - Teal */
    --tt-brand-warning: #f2b319; /* Warning - Yellow */
    --tt-brand-danger: #b2192c; /* Danger - Dark Red */
    --tt-brand-info: #cc8398; /* Info - Light Pink */
    --tt-brand-light-bg: #f5f5ff; /* Light background */
    --tt-brand-dark: #151d23; /* Dark text/background */
    
    --tt-text-dark: #333;
    --tt-text-light: #fff;
    --tt-text-muted: #6b757d;
    --tt-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    
    /* Map Bootstrap colors to brand colors */
    --bs-primary: var(--tt-brand-color);
    --bs-primary-rgb: 234, 42, 81;
    --bs-secondary: var(--tt-brand-secondary);
    --bs-secondary-rgb: 107, 117, 125;
    --bs-success: var(--tt-brand-success);
    --bs-success-rgb: 2, 163, 147;
    --bs-warning: var(--tt-brand-warning);
    --bs-warning-rgb: 242, 179, 25;
    --bs-danger: var(--tt-brand-danger);
    --bs-danger-rgb: 178, 25, 44;
    --bs-info: var(--tt-brand-info);
    --bs-info-rgb: 204, 131, 152;
    --bs-light: var(--tt-brand-light-bg);
    --bs-light-rgb: 245, 245, 255;
    --bs-dark: var(--tt-brand-dark);
    --bs-dark-rgb: 21, 29, 35;
}

/* Bootstrap Color Class Overrides */
.text-primary {
    color: var(--tt-brand-color) !important;
}

.text-secondary {
    color: var(--tt-brand-secondary) !important;
}

.text-success {
    color: var(--tt-brand-success) !important;
}

.text-warning {
    color: var(--tt-brand-warning) !important;
}

.text-danger {
    color: var(--tt-brand-danger) !important;
}

.text-info {
    color: var(--tt-brand-info) !important;
}

.text-muted {
    color: var(--tt-text-muted) !important;
}

.bg-primary {
    background-color: var(--tt-brand-color) !important;
}

.bg-secondary {
    background-color: var(--tt-brand-secondary) !important;
}

.bg-success {
    background-color: var(--tt-brand-success) !important;
}

.bg-warning {
    background-color: var(--tt-brand-warning) !important;
}

.bg-danger {
    background-color: var(--tt-brand-danger) !important;
}

.bg-info {
    background-color: var(--tt-brand-info) !important;
}

.bg-light {
    background-color: var(--tt-brand-light-bg) !important;
}

.bg-dark {
    background-color: var(--tt-brand-dark) !important;
}

/* Button Overrides */
.btn-primary {
    color: var(--tt-text-light);
    background-color: var(--tt-brand-color);
    border-color: var(--tt-brand-color);
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active {
        background-color: var(--tt-brand-light);
        border-color: var(--tt-brand-light);
    }

.btn-outline-primary {
    color: var(--tt-brand-color);
    border-color: var(--tt-brand-color);
}

    .btn-outline-primary:hover,
    .btn-outline-primary:focus,
    .btn-outline-primary:active {
        background-color: var(--tt-brand-color);
        border-color: var(--tt-brand-color);
        color: var(--tt-text-light);
    }

.btn-success {
    background-color: var(--tt-brand-success);
    border-color: var(--tt-brand-success);
}

.btn-warning {
    background-color: var(--tt-brand-warning);
    border-color: var(--tt-brand-warning);
}

.btn-danger {
    background-color: var(--tt-brand-danger);
    border-color: var(--tt-brand-danger);
}

.btn-info {
    background-color: var(--tt-brand-info);
    border-color: var(--tt-brand-info);
}

/* Alert Overrides */
.alert-danger {
    background-color: var(--tt-brand-danger);
    color: var(--tt-text-light);
    border-color: var(--tt-brand-danger);
}

.alert-success {
    background-color: var(--tt-brand-success);
    color: var(--tt-text-light);
    border-color: var(--tt-brand-success);
}

.alert-warning {
    background-color: var(--tt-brand-warning);
    color: var(--tt-text-dark);
    border-color: var(--tt-brand-warning);
}

.alert-info {
    background-color: var(--tt-brand-info);
    color: var(--tt-text-light);
    border-color: var(--tt-brand-info);
}

/* Spinner Override */
.spinner-border.text-primary {
    color: var(--tt-brand-color) !important;
}

/* --- Base Typography and Links --- */
html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Fix Chrome H1UserAgentFontSizeInSection deprecation warning */
h1 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Responsive H1 sizes */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
}

a, .btn-link {
    color: var(--tt-brand-color);
}

/* --- Focus States --- */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--tt-brand-light);
}

/* --- Layout Structure --- */
.page {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

main {
    flex: 1;
    width: 100%;
    max-width: 100%;
}

.content {
    padding-top: 1.1rem;
    width: 100%;
    max-width: 100%;
}

/* --- Cookie Consent Banner Styles --- */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    padding: 20px;
    border-top: 3px solid var(--tt-brand-color);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-consent-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-consent-icon {
    font-size: 2rem;
    color: var(--tt-brand-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-title {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tt-text-dark);
}

.cookie-consent-description {
    margin: 0;
    font-size: 0.95rem;
    color: var(--tt-text-muted);
    line-height: 1.5;
}

.cookie-consent-link {
    color: var(--tt-brand-color);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent-link:hover {
    color: var(--tt-brand-light);
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

/* Mobile specific cookie consent styles */
@media (max-width: 991.98px) {
    .cookie-consent-banner {
        bottom: 65px; /* Above mobile bottom navigation */
        padding: 15px;
    }
    
    .cookie-consent-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-consent-content {
        width: 100%;
        min-width: unset;
    }
    
    .cookie-consent-icon {
        font-size: 1.5rem;
    }
    
    .cookie-consent-title {
        font-size: 1rem;
    }
    
    .cookie-consent-description {
        font-size: 0.875rem;
    }
    
    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-consent-actions .btn {
        width: 100%;
        margin: 0 !important;
    }
}

/* Desktop specific cookie consent styles */
@media (min-width: 992px) {
    .cookie-consent-banner {
        padding: 25px 40px;
    }
    
    .cookie-consent-actions .btn {
        padding: 8px 24px;
        white-space: nowrap;
    }
}

/* --- Validation and Error Boundaries --- */
h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e52730;
}

.validation-message {
    color: #e52730;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA9NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjY2LjczNyA2Ni4wMTgzIDI2Ny4zMTMgNjcuMTI0NSAyNjcuMzEzIDY5LjMzNyAyNjcuMzEzIDY5LjYxMDIgMjY3LjMzMiA2OS44NjA4IDI2Ny4zNzEgNzAuMDg4N0wyNjkuNzk1IDg0LjAxNjEgMjczLjM4IDg0LjAxNjEgMjczLjgyMSA2OS43NDc1QzI3My44NiA2OS43MzA5IDI3My44NzkgNjkuNTg3NyAyNzMuODc5IDY5LjMxNzkgMjc3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}


/* ========================================================= */
/* --- CUSTOM DESIGN STYLES (PC & MOBILE) --- */
/* ========================================================= */

/* --- Home Page Specific Styles --- */
.hero-section {
    background: linear-gradient(135deg, var(--tt-brand-light-bg) 0%, #e9ecef 100%);
}

.category-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

    .category-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 0.5rem 1rem rgba(234, 42, 81, 0.15);
    }

.new-arrivals-card {
    background: linear-gradient(135deg, var(--tt-brand-color) 0%, var(--tt-brand-success) 100%);
}

.new-arrivals-banner .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .new-arrivals-banner .card:hover {
        transform: translateY(-2px);
        box-shadow: 0 0.5rem 1rem rgba(234, 42, 81, 0.3);
    }

.how-it-works .card .rounded-circle {
    background-color: var(--tt-brand-color);
    color: var(--tt-text-light);
}

/* --- RESPONSIVE VISIBILITY CONTROLS --- */
/* Hide desktop header on mobile screens (below 992px) */
@media (max-width: 991.98px) {
    .app-header-desktop {
        display: none !important;
    }
    
    .page {
        padding-bottom: 65px;
    }
}

/* Hide mobile header and bottom nav on desktop screens (992px and above) */
@media (min-width: 992px) {
    .app-header-mobile {
        display: none !important;
    }
    
    .app-bottom-nav {
        display: none !important;
    }
    
    .mobile-menu-overlay,
    .mobile-side-menu {
        display: none !important;
    }
    
    .page {
        padding-bottom: 0;
    }
}

/* 1. DESKTOP HEADER STYLES (.app-header-desktop) */
.app-header-desktop {
    background-color: var(--tt-text-light);
    box-shadow: var(--tt-shadow);
    padding: 10px 40px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    z-index: 99;
    position: sticky;
    top: 0;
}

    .app-header-desktop .header-top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 10px;
    }

    .app-header-desktop .logo {
        font-size: 1.6rem;
        font-weight: bold;
        color: var(--tt-brand-color);
        display: flex;
        align-items: center;
        gap: 5px;
        text-decoration: none;
        white-space: nowrap;
        flex-shrink: 0;
    }

        .app-header-desktop .logo i {
            font-size: 2rem;
        }
        
        .app-header-desktop .logo-img {
            max-height: 50px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

    .app-header-desktop .search-bar {
        flex-grow: 1;
        max-width: 550px;
        margin: 0 40px;
        flex-shrink: 1;
    }

        .app-header-desktop .search-bar .input-group {
            height: 40px;
        }

        .app-header-desktop .search-bar .form-control {
            border-radius: 20px 0 0 20px !important;
            border-color: #ccc;
            height: 100%;
        }

        .app-header-desktop .search-bar .input-group-text {
            background-color: var(--tt-text-light);
            border-radius: 0 20px 20px 0 !important;
            border-color: #ccc;
            color: #888;
            cursor: pointer;
            height: 100%;
        }

    .app-header-desktop .auth-actions {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-shrink: 0;
        white-space: nowrap;
    }

        .app-header-desktop .auth-actions .login-link {
            color: var(--tt-text-dark);
            text-decoration: none;
            font-weight: 500;
        }

            .app-header-desktop .auth-actions .login-link:hover {
                color: var(--tt-brand-color);
            }

        .app-header-desktop .auth-actions .sign-up-btn {
            background-color: var(--tt-brand-color);
            color: var(--tt-text-light);
            padding: 5px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.2s;
        }

            .app-header-desktop .auth-actions .sign-up-btn:hover {
                background-color: var(--tt-brand-light);
            }

        .app-header-desktop .auth-actions .icon-link i {
            font-size: 1.4rem;
            color: var(--tt-brand-color);
        }

        .app-header-desktop .auth-actions .icon-link {
            text-decoration: none;
            line-height: 1;
            display: inline-flex;
            align-items: center;
        }

            .app-header-desktop .auth-actions .icon-link:hover i {
                color: var(--tt-brand-light);
            }

        .app-header-desktop .auth-actions .logout-btn {
            color: var(--tt-text-dark);
            text-decoration: none;
            font-weight: 500;
            line-height: 1;
            padding: 0 !important;
            background: none;
            border: none;
        }

            .app-header-desktop .auth-actions .logout-btn:hover {
                color: var(--tt-brand-color);
            }

    .app-header-desktop .header-bottom-row {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-top: 5px;
        gap: 25px;
    }

    .app-header-desktop .main-nav-link {
        text-decoration: none;
        color: var(--tt-text-dark);
        font-weight: 500;
        padding: 10px 0;
        position: relative;
        transition: color 0.2s;
    }

        .app-header-desktop .main-nav-link:hover {
            color: var(--tt-brand-color);
        }

        .app-header-desktop .main-nav-link.active {
            color: var(--tt-brand-color);
            font-weight: 600;
        }

            .app-header-desktop .main-nav-link.active::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                height: 3px;
                width: 100%;
                background-color: var(--tt-brand-color);
                border-radius: 2px;
            }

    .app-header-desktop .notification-bell {
        margin-left: 20px;
        color: var(--tt-brand-color);
        font-size: 1.4rem;
        line-height: 1;
        text-decoration: none;
    }

        .app-header-desktop .notification-bell:hover {
            color: var(--tt-brand-light);
        }

/* 2. MOBILE HEADER STYLES (.app-header-mobile) */
.app-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: var(--tt-text-light);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 90;
    height: 60px;
}

    .app-header-mobile .logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--tt-brand-color);
        flex: 1;
        display: flex;
        justify-content: center;
        min-width: 0; /* Allow flex item to shrink below content size */
    }

    .app-header-mobile .logo-img {
        max-height: 40px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .app-header-mobile .icon {
        font-size: 1.4rem;
        color: var(--tt-text-dark);
        text-decoration: none;
        flex-shrink: 0; /* Prevent icons from shrinking */
    }

    .app-header-mobile .notification-badge {
        position: absolute;
        top: -5px;
        right: -10px;
        background-color: #E52730;
        color: white;
        font-size: 0.6rem;
        padding: 1px 5px;
        border-radius: 50%;
        min-width: 18px;
        text-align: center;
    }

/* 2.5 MOBILE SIDE MENU STYLES */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .mobile-menu-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.mobile-side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background-color: var(--tt-text-light);
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .mobile-side-menu.open {
        transform: translateX(0);
    }

    .mobile-side-menu .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid #e0e0e0;
    }

        .mobile-side-menu .mobile-menu-header .logo {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--tt-brand-color);
            display: flex;
            align-items: center;
            gap: 5px;
        }

            .mobile-side-menu .mobile-menu-header .logo i {
                font-size: 1.6rem;
            }
            
            .mobile-side-menu .mobile-menu-header .logo-img {
                max-height: 40px;
                width: auto;
                height: auto;
                object-fit: contain;
            }

        .mobile-side-menu .mobile-menu-header .close-btn {
            font-size: 1.5rem;
            color: var(--tt-text-dark);
        }

    .mobile-side-menu .mobile-menu-content {
        flex: 1;
        overflow-y: auto;
        padding: 20px;
    }

    .mobile-side-menu .mobile-menu-user {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 15px;
        background-color: #f5f5f5;
        border-radius: 8px;
        margin-bottom: 20px;
    }

        .mobile-side-menu .mobile-menu-user i {
            font-size: 2rem;
            color: var(--tt-brand-color);
        }

        .mobile-side-menu .mobile-menu-user span {
            font-weight: 500;
            color: var(--tt-text-dark);
        }

    .mobile-side-menu .mobile-menu-auth {
        margin-bottom: 20px;
    }

    .mobile-side-menu .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-side-menu .mobile-menu-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 12px 15px;
        color: var(--tt-text-dark);
        text-decoration: none;
        border-radius: 8px;
        transition: background-color 0.2s;
        font-weight: 500;
    }

        .mobile-side-menu .mobile-menu-item i {
            font-size: 1.2rem;
            color: var(--tt-brand-color);
        }

        .mobile-side-menu .mobile-menu-item:hover {
            background-color: #f5f5f5;
        }

        .mobile-side-menu .mobile-menu-item.active {
            background-color: rgba(64, 160, 142, 0.1);
            color: var(--tt-brand-color);
            font-weight: 600;
        }

    .mobile-side-menu .mobile-menu-footer {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e0e0e0;
    }

/* 3. MOBILE BOTTOM NAV (.app-bottom-nav) */
.app-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: var(--tt-text-light);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
}

    .app-bottom-nav nav {
        height: 100%;
        width: 100%;
    }

    .app-bottom-nav .nav-item-icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        color: #888;
        text-decoration: none;
        font-size: 0.7rem;
        padding: 5px 0;
        transition: color 0.2s;
    }

        .app-bottom-nav .nav-item-icon i {
            font-size: 1.4rem;
            margin-bottom: 2px;
        }

        .app-bottom-nav .nav-item-icon.active {
            color: var(--tt-brand-color);
            font-weight: 600;
        }

    .app-bottom-nav .nav-item-sell {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--tt-brand-color);
        color: var(--tt-text-light);
        font-weight: bold;
        font-size: 0.8rem;
        padding: 10px 15px;
        border-radius: 25px;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: translateY(-10px);
        height: 45px;
        transition: background-color 0.2s;
    }

        .app-bottom-nav .nav-item-sell:hover {
            background-color: var(--tt-brand-light);
        }
