/* PROFESSIONAL MODERN NAVBAR - BLACK & WHITE THEME */

:root {
    --navbar-bg-primary: #ffffff;
    --navbar-bg-secondary: #f8f9fa;
    --navbar-text-primary: #1a1a1a;
    --navbar-text-secondary: #666666;
    --navbar-border: #e8e8e8;
    --navbar-promo-bg: #1a1a1a;
    --navbar-promo-text: #ffffff;
    --navbar-hover: #f0f0f0;
    --navbar-accent: #0066cc;
}

/* ==================== PROMOTIONAL BAR ==================== */
.navbar-promo-bar {
    background-color: var(--navbar-promo-bg);
    color: var(--navbar-promo-text);
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    gap: 10px;

    
}

.promo-text {
    /* flex: 1; */
    text-align: center;
    font-weight: bold;
}

.promo-btn {
    background-color: transparent;
    color: var(--navbar-promo-text);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.promo-btn:hover {
    opacity: 0.8;
}

/* ==================== SECONDARY INFO BAR ==================== */
.navbar-info-bar {
    background-color: var(--navbar-bg-secondary);
    border-bottom: 1px solid var(--navbar-border);
    padding: 10px 0;
}

.info-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 13px;
    color: var(--navbar-text-secondary);
}

.info-left {
    display: flex;
    gap: 30px;
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item i {
    font-size: 15px;
}

.info-right {
    display: flex;
    gap: 20px;
}

.info-link {
    color: var(--navbar-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--navbar-text-primary);
}

/* ==================== MAIN NAVBAR ==================== */
.header-area.navbar-modern {
    background-color: var(--navbar-bg-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* .navbar-main {
    padding: 12px 0;
    border-bottom: 1px solid var(--navbar-border);
} */

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* ==================== DESKTOP NAVBAR ==================== */
.navbar-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.navbar-logo {
    flex-shrink: 0;
}

.navbar-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.navbar-nav {
    display: flex;
    gap: 35px;
}

.nav-item {
    color: var(--navbar-text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover {
    color: var(--navbar-accent);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--navbar-accent);
    transition: width 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--navbar-accent);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* CATEGORY DROPDOWN MENU */
.nav-item-group {
    position: relative;
}

.nav-item-group:hover .nav-dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: white;
    min-width: 250px;
    border: 1px solid var(--navbar-border);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    padding: 8px 0;
}

.nav-dropdown-item {
    padding: 0;
}

.nav-dropdown-title {
    display: block;
    padding: 12px 16px;
    color: var(--navbar-text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.nav-dropdown-title:hover {
    background-color: var(--navbar-bg-secondary);
    color: var(--navbar-accent);
    padding-left: 20px;
}

.nav-sub-items {
    display: none;
    position: absolute;
    left: calc(100% + 5px);
    top: 0;
    background: white;
    min-width: 200px;
    border: 1px solid var(--navbar-border);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
}

.nav-dropdown-item:hover .nav-sub-items {
    display: block;
}

.nav-sub-item {
    display: block;
    padding: 10px 16px;
    color: var(--navbar-text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f5f5f5;
}

.nav-sub-item:hover {
    background-color: var(--navbar-bg-secondary);
    color: var(--navbar-accent);
    padding-left: 20px;
}

/* ==================== SEARCH BAR ==================== */
.navbar-search {
    flex: 0.9;
}

.search-form {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    padding: 10px 14px;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.search-form:focus-within {
    border-color: var(--navbar-accent);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.search-form input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--navbar-text-primary);
    font-size: 14px;
    outline: none;
}

.search-form input::placeholder {
    color: #999;
    font-style: italic;
}

.search-form button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form button:hover {
    color: var(--navbar-accent);
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--navbar-border);
    border-top: none;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    border-radius: 0 0 6px 6px;
    margin-top: -2px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* ==================== NAVBAR RIGHT ACTIONS ==================== */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.navbar-action {
    color: var(--navbar-text-primary);
    text-decoration: none;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
}

.navbar-action:hover {
    color: var(--navbar-accent);
}

.navbar-action .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff4444;
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
}

.navbar-action-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navbar-text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.navbar-action-text:hover {
    color: var(--navbar-accent);
}

.navbar-auth .dropdown-menu {
    min-width: 160px;
    border: 1px solid var(--navbar-border);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-auth .dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    color: var(--navbar-text-primary);
}

.navbar-auth .dropdown-item:hover {
    background-color: var(--navbar-bg-secondary);
    color: var(--navbar-accent);
}

/* ==================== MOBILE NAVBAR ==================== */
.navbar-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-navbar-left {
    display: flex;
    gap: 21px;
    align-items: end;
}

.mobile-navbar-right {
   display: flex;
    gap: 21px;
    padding: 7px 0px 0px 0px;
}

.navbar-toggle {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
}

.navbar-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--navbar-text-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ==================== MOBILE MENU SIDEBAR - PREMIUM CARD DESIGN ==================== */
.mobile-menu-sidebar {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    background: #ffffff;
    padding: 0;
    z-index: 1001;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
}

.mobile-menu-sidebar.active {
    left: 0;
}

/* Backdrop overlay */
.mobile-menu-sidebar::before {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: -1;
    pointer-events: none;
}

.mobile-menu-sidebar.active::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Smooth scrollbar */
.mobile-menu-sidebar::-webkit-scrollbar {
    width: 5px;
}

.mobile-menu-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-menu-sidebar::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.mobile-menu-sidebar::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* ==================== HEADER - CLOSE BUTTON (MINIMAL) ==================== */
.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    color: #000;
}

.mobile-menu-header {
    display: none;
}

.mobile-logo {
    display: none;
}

.mobile-menu-close:hover {
    background: transparent;
    color: #000;
}

/* ==================== SIDEBAR CONTENT ==================== */
.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0 20px 0;
    background: white;
    pointer-events: auto;
}

/* Section Styling */
.sidebar-section {
    padding: 20px;
    border-bottom: 1px solid #f5f5f5;
    background: white;
}

.sidebar-section:first-child {
    padding-top: 8px;
}

.sidebar-section:last-of-type {
    border-bottom: none;
    padding-bottom: 20px;
}

.section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
    margin-top: 12px;
}

.sidebar-section:first-child .section-title {
    margin-top: 0;
}

/* ==================== CARD-BASED NAVIGATION ==================== */
.nav-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-card-group {
    margin-bottom: 0;
}

.nav-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-bottom: 8px;
    background: white;
    cursor: pointer;
    width: 100%;
    text-align: left;
    pointer-events: auto;
    display: flex;
}

.nav-card:link,
.nav-card:visited {
    color: #333;
}

.nav-card:active {
    color: #333;
}

.nav-card span {
    flex: 1;
}

.nav-card .toggle-icon {
    margin-left: auto;
    font-size: 14px;
    transition: transform 0.25s ease;
    color: #999;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 10;
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
}

.nav-card .toggle-icon.rotated {
    transform: rotate(-180deg);
}

.nav-card:hover {
    border-color: #333;
    background: #fafafa;
    transform: translateX(4px);
}

.nav-card:hover .toggle-icon {
    color: #333;
}

.nav-card-group {
    margin-bottom: 0;
}

.submenu-items {
    display: none;
    margin-top: 0;
    padding: 8px 0 0 0;
    margin-left: 8px;
    border-left: 2px solid #f0f0f0;
    animation: slideDown 0.25s ease;
    pointer-events: auto;
}

.submenu-items.active {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.submenu-item {
    padding: 12px 16px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    border-radius: 0;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 20px;
    margin-bottom: 0;
    border: none;
}

.submenu-item::before {
    content: '';
    position: absolute;
    left: -11px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #999;
    border-radius: 50%;
}

.submenu-item:hover {
    color: #333;
    background: #f9f9f9;
    padding-left: 24px;
}

/* ==================== TRENDING SECTION ==================== */
.trending-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: white;
    margin-bottom: 8px;
}

.trending-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 26px;
    background: #333;
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.trending-badge.popular {
    background: #ff6b35;
}

.trending-badge.sale {
    background: #d32f2f;
}

.trending-item:hover {
    border-color: #333;
    background: #fafafa;
    transform: translateX(4px);
}

/* ==================== ACCOUNT SECTION ==================== */
.account-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-account-summary {
    padding: 14px 16px;
    margin-bottom: 10px;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    background: linear-gradient(180deg, #fbfcfe 0%, #f5f8fc 100%);
}

.mobile-account-summary-label {
    display: block;
    margin-bottom: 4px;
    color: #7b8794;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-account-summary strong {
    display: block;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    word-break: break-word;
}

.account-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: white;
    margin-bottom: 8px;
}

.account-item i {
    font-size: 16px;
    color: #666;
    width: 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.account-item:hover {
    border-color: #333;
    background: #fafafa;
    transform: translateX(4px);
}

.account-item:hover i {
    color: #333;
}

.account-item-logout {
    color: #9f1239;
}

.account-item-logout i {
    color: #9f1239;
}

.account-item-logout:hover {
    border-color: #f1c7d4;
    background: #fff8fa;
}

.account-item-logout:hover i,
.account-item-logout:hover span {
    color: #881337;
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    border-radius: 8px;
    text-align: center;
    padding: 16px !important;
    margin: 0 !important;
    border-bottom: none !important;
}

.newsletter-section h3 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
}

.newsletter-section p {
    margin: 0 0 14px 0;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter-form input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    background: white;
    outline: none;
    transition: all 0.2s ease;
}

.newsletter-form input:focus {
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.1);
}

.newsletter-form button {
    padding: 10px 12px;
    background: #333;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    background: #000;
}

/* ==================== SIDEBAR FOOTER (HIDDEN) ==================== */
.sidebar-footer {
    display: none;
}

.auth-section {
    display: none;
}

.auth-btn {
    display: none;
}

.social-section {
    display: none;
}

.social-title {
    display: none;
}

.social-icons {
    display: none;
}

.social-icon {
    display: none;
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-toggle {
    display: none;
}

/* ==================== SUBMENU ENHANCEMENTS ==================== */
.mobile-nav-submenu {
    display: none;
}

.mobile-nav-submenu.active {
    display: block;
}

.mobile-sub-item-group {
    display: none;
}

.mobile-sub-item {
    display: none;
}

.mobile-sub-item:hover {
    display: none;
}

/* ==================== CHILD ITEMS ==================== */
.mobile-child-items {
    display: none;
}

.mobile-child-items.active {
    display: none;
}

.mobile-child-item {
    display: none;
}

.mobile-child-item:hover {
    display: none;
}

/* ==================== CONTACT SECTION ==================== */
.mobile-auth-section {
    display: none;
}

.mobile-auth-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--navbar-border);
}


/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1199px) {
    .navbar-nav {
        gap: 25px;
    }

    .nav-item {
        font-size: 15px;
    }

    .navbar-left {
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .navbar-right {
        gap: 15px;
    }

    .info-left {
        gap: 15px;
    }

    .info-item {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .promo-content {
        flex-direction: row;
        /* gap: 8px; */
        text-align: center;
        font-size: 11px;
        padding: 0;

    }

    .promo-btn {
        display: inline-block;
    }

    .info-bar-content {
        flex-direction: column;
        gap: 15px;
    }

    .info-left {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
    }

    .info-right {
        flex-direction: column;
        gap: 8px;
    }

    .info-link {
        font-size: 12px;
    }

    .navbar-search {
        position: fixed;
        top: 70px;
        left: 10px;
        right: 10px;
        width: auto;
        margin: 0;
        z-index: 500;
        display: none;
    }

    .navbar-search.visible {
        display: block;
    }

    .navbar-wrapper {
        gap: 10px;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==================== UTILITIES ==================== */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-lg-none {
    display: flex !important;
    @media (min-width: 1024px) {
        display: none !important;
    }
}

.d-lg-block {
    display: none;
    @media (min-width: 1024px) {
        display: block !important;
    }
}

.d-lg-flex {
    display: none;
    @media (min-width: 1024px) {
        display: flex !important;
    }
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================== MOBILE CATEGORY TILES ==================== */
.mobile-category-tiles {
    background-color: var(--navbar-bg-secondary);
    border-bottom: 1px solid var(--navbar-border);
    padding:0;
    overflow-x: auto;
    overflow-y: hidden;
    align-items: center;
    justify-content: center;
}

.tiles-scroll-container {
    display: flex;
    gap: 15px;
    padding: 0 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.tiles-scroll-container::-webkit-scrollbar {
    height: 4px;
}

.tiles-scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.tiles-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.category-tile {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--navbar-text-primary);
    transition: all 0.3s ease;
    min-width: 70px;
    padding: 10px 5px 0;
}

.category-tile:hover {
    color: var(--navbar-accent);
    transform: translateY(-3px);
}

.tile-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--navbar-text-primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.category-tile:hover .tile-icon {
    background-color: var(--navbar-accent);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
    transform: scale(1.1);
}

.category-tile span {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70px;
}

/* Mobile View Specific */
@media (max-width: 480px) {
    .mobile-category-tiles {
        padding:0;
        
    }

    .tiles-scroll-container {
        gap: 10px;
        padding: 0 10px;
    }

    .category-tile {
        min-width: 60px;
        gap: 6px;
    }

    .tile-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        font-size: 20px;
        overflow: hidden;
    }

    .tile-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .category-tile span {
        font-size: 11px;
        max-width: 60px;
    }
}
