/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F27900;
    --text-color: #DD9933;
    --bg-color: #D3D3D3;
    --header-bg: rgba(234, 234, 234, 0.9);
    --footer-bg: rgb(51, 51, 51);
    --white: #ffffff;
    --black: #000000;
    --overlay: rgba(0, 0, 0, 0.65);
    --sidebar-bg: #1a1d29;
    --sidebar-hover: #2a2d3a;
}

html {
    width: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
}

#main {
    background-color: var(--bg-color);
    margin-top: 0;
    padding-top: 0;
    clear: both;
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Header Styles */
#header-placeholder {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1000;
}

.header {
    background-color: var(--header-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
    clear: both;
    margin-bottom: 0;
    display: block !important;
    overflow: visible;
    box-sizing: border-box;
    visibility: visible;
    opacity: 1;
}

@media (max-width: 768px) {
    .header {
        z-index: 1003;
    }
}

.header-wrapper {
    background-color: var(--header-bg);
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overflow: visible;
    box-sizing: border-box;
}

.header-main {
    height: 69px;
    min-height: 69px;
    max-height: 69px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.logo {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    max-height: 69px;
    width: 200px;
    height: 69px;
    object-fit: contain;
    display: block;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1002;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0;
    padding: 0;
}

.main-nav > ul > li > a {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    line-height: 35px;
    padding: 0 8px;
    white-space: nowrap;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
    color: var(--primary-color);
}

.main-nav .arrow {
    font-size: 10px;
    margin-left: 3px;
}

.main-nav .dropdown {
    position: relative;
}

.main-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(30, 30, 30, 0.89);
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0;
    padding: 0.5rem 0;
    z-index: 1001;
    pointer-events: none;
    list-style: none;
    display: block !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.main-nav .dropdown:hover .dropdown-menu,
.main-nav .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.main-nav .dropdown-menu li {
    margin: 0;
    list-style: none;
}

.main-nav .dropdown-menu a {
    color: #f2f2f2 !important;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-transform: none;
    font-size: 81%;
    line-height: 1.5;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
}

.main-nav .dropdown-menu a:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

.main-nav .dropdown-menu a:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: var(--sidebar-bg);
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1003;
    position: fixed;
    top: 20px;
    right: 20px;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--sidebar-hover);
    transform: scale(1.05);
}

.mobile-menu-toggle.active {
    background: var(--primary-color);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Slider Styles */
.slider-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    margin-top: 0;
    position: relative;
    background-color: var(--bg-color);
    max-width: 100%;
    clear: both;
    display: block;
    box-sizing: border-box;
}

.slider {
    display: flex;
    width: 100%;
    transition: transform 0.8s ease-in-out;
    position: relative;
    will-change: transform;
}

.slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    background-color: var(--bg-color);
    display: block;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    vertical-align: top;
    max-width: 100%;
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}

@keyframes slide {
    0%, 16.66% { transform: translateX(0); }
    20%, 36.66% { transform: translateX(-100%); }
    40%, 56.66% { transform: translateX(-200%); }
    60%, 76.66% { transform: translateX(-300%); }
    80%, 96.66% { transform: translateX(-400%); }
    100% { transform: translateX(-500%); }
}

/* Categories Section */
.categories-section {
    margin: 40px 0;
    padding: 0;
}

.section-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #1a1a1a;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    padding-top: 3rem;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    border-radius: 2px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.75rem;
    margin-bottom: 40px;
    max-width: 100%;
}

@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.category-card {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 102, 0, 0.3);
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(255, 102, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 1;
}

.category-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    padding: 1.25rem 1rem;
    white-space: normal;
    word-wrap: break-word;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.category-card:hover .category-text {
    color: #ffffff;
    padding-bottom: 1.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 1);
    transform: translateY(-2px);
}

/* Footer */
#footer-placeholder {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.footer {
    background-color: #333333;
    color: #cccccc;
    margin-top: 50px;
    border-top: 3px solid var(--primary-color);
    display: block !important;
    visibility: visible;
    opacity: 1;
    width: 100%;
}

.footer-content {
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    align-items: start;
}

.footer-logo {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    margin-bottom: 0.5rem;
}

.contact-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.contact-item p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

.footer-email {
    display: flex;
    flex-direction: column;
}

.footer-email p {
    margin: 0;
    color: #cccccc;
}

.footer-email a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #999999;
    margin: 0;
    font-size: 0.9rem;
}

/* Page Content */
.page-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.page-content h1 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.page-content h2 {
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.page-content ul {
    margin-left: 2rem;
    line-height: 2;
}

.page-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

/* ============================================
   MODERN SIDEBAR NAVIGATION
   ============================================ */

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modern Sidebar */
.modern-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 85vw;
    height: 100vh;
    max-height: 100vh;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1d29 0%, #2a2d3a 100%);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-sizing: border-box;
}

.modern-sidebar.active {
    right: 0;
}

/* Custom scrollbar */
.modern-sidebar::-webkit-scrollbar {
    width: 6px;
}

.modern-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.modern-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.modern-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Sidebar Header */
.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 102, 0, 0.3);
}

.logo-text {
    flex: 1;
}

.app-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.app-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 1.5rem 0;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    position: relative;
    width: 100%;
}

.sidebar-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block !important;
    width: 100% !important;
    min-height: auto;
    padding-bottom: 2rem;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

.sidebar-nav .nav-item {
    margin-bottom: 4px;
    display: list-item !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    height: auto !important;
    min-height: auto !important;
    list-style: none;
}

.sidebar-nav .nav-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    color: #e4e6eb;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
}

.sidebar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 600;
}

.sidebar-nav .nav-link.active {
    background: rgba(255, 102, 0, 0.15);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

.sidebar-nav .nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-nav .nav-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    opacity: 0.8;
}

.sidebar-nav .nav-link.active .nav-icon svg,
.sidebar-nav .nav-link:hover .nav-icon svg {
    opacity: 1;
}

.sidebar-nav .nav-text {
    flex: 1;
    display: block;
    visibility: visible !important;
    opacity: 1 !important;
}

.sidebar-nav .nav-chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.sidebar-nav .nav-item.has-submenu.active .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.sidebar-nav .nav-chevron svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

/* Submenu */
.sidebar-nav .submenu {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
    visibility: visible !important;
}

.sidebar-nav .nav-item.has-submenu.active .submenu {
    max-height: 2000px !important;
    overflow: visible;
}

.sidebar-nav .submenu-list {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.sidebar-nav .submenu-item {
    margin: 0;
}

.sidebar-nav .submenu-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem 0.75rem 3.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-nav .submenu-link::before {
    content: '';
    position: absolute;
    left: 2rem;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.5;
}

.sidebar-nav .submenu-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding-left: 4rem;
    opacity: 1;
}

.sidebar-nav .submenu-link:hover::before {
    opacity: 1;
}

.sidebar-nav .submenu-link.active {
    background: rgba(255, 102, 0, 0.15);
    color: var(--primary-color);
    opacity: 1;
    font-weight: 500;
}

.sidebar-nav .submenu-link.active::before {
    opacity: 1;
    background: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .modern-sidebar {
        width: 320px;
        max-width: 90vw;
    }

    .sidebar-header {
        padding: 1.5rem 1rem;
    }

    .app-name {
        font-size: 1.1rem;
    }

    .app-subtitle {
        font-size: 0.75rem;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
        z-index: 1002;
        overflow-y: auto;
        overflow-x: hidden;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav::before {
        content: 'MENU';
        position: sticky;
        top: 0;
        height: 69px;
        min-height: 69px;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-bottom: 2px solid rgba(255, 102, 0, 0.2);
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 1.5rem;
        font-weight: 700;
        font-size: 1.1rem;
        color: #1a1a1a;
        letter-spacing: 2px;
        text-transform: uppercase;
        flex-shrink: 0;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 0;
        gap: 0;
        margin: 0;
        list-style: none;
    }

    .main-nav > ul {
        padding-top: 0;
        flex: 1;
    }

    .main-nav li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .main-nav > ul > li > a {
        padding: 1.25rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #1a1a1a;
        font-weight: 600;
        font-size: 0.95rem;
        text-transform: uppercase;
        transition: all 0.3s ease;
        border-bottom: none;
        background-color: transparent;
    }

    .main-nav > ul > li > a:hover,
    .main-nav > ul > li > a.active {
        background-color: rgba(255, 102, 0, 0.1);
        color: #ff6600;
        padding-left: 2rem;
    }

    .main-nav .arrow {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .main-nav .dropdown.active .arrow {
        transform: rotate(180deg);
    }

    .main-nav .dropdown-menu {
        position: static !important;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.03);
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
        border-radius: 0;
        display: block !important;
        pointer-events: none;
    }

    .main-nav .dropdown.active .dropdown-menu {
        max-height: 2000px !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 0.5rem 0 0 0;
        pointer-events: auto !important;
        overflow: visible;
    }

    .main-nav .dropdown-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: block !important;
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .main-nav .dropdown-menu a {
        padding: 1rem 1.5rem 1rem 3rem;
        color: #555 !important;
        font-size: 0.9rem;
        font-weight: 400;
        text-transform: none;
        transition: all 0.3s ease;
        display: block !important;
        width: 100%;
        text-decoration: none;
        opacity: 1;
        visibility: visible;
    }

    .main-nav .dropdown-menu a:hover {
        background-color: rgba(255, 102, 0, 0.1);
        color: #ff6600;
        padding-left: 3.5rem;
    }

    .category-card {
        height: 200px;
    }

    .category-text {
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-email {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .category-card {
        height: 150px;
    }

    .category-text {
        font-size: 0.9rem;
    }

    .modern-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .mobile-menu-toggle {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
    }
}
