/* Reset básico e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif; 
    background-color: #ffffff;
    line-height: 1.6;
    padding-top: 132px; 
    transition: padding-top 0.4s ease;
}

/* --- HEADER DINÂMICO --- */
header {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000; 
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Barra superior (popup) */
.top-bar {
    text-align: center;
    padding: 8px 20px;
    font-size: 0.75rem; 
    color: #555;
    font-weight: 400; 
    max-height: 50px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

/* Navegação Principal */
.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 30px;
    transition: padding 0.4s ease;
}

.logo img {
    max-height: 60px;
    transition: max-height 0.4s ease;
}

.main-nav nav a {
    text-decoration: none;
    color: #75B2DF; /* COR PRINCIPAL RODALTEK */
    font-weight: 400; 
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}
.main-nav nav a:hover { opacity: 0.7; }
.main-nav nav ul { list-style: none; display: flex; gap: 35px; }

.nav-icons { display: flex; gap: 20px; }
.nav-icons a { color: #75B2DF; font-size: 1.2rem; text-decoration: none; transition: opacity 0.3s ease; }
.nav-icons a:hover { opacity: 0.7; }

.hamburger-menu {
    display: none;
}

/* ========================================= */
/* --- AJUSTES DE VISIBILIDADE DESKTOP/MOBILE --- */
/* ========================================= */
.mobile-only { display: none; }
.mobile-submenu { display: none; }

/* --- ESTADO DO HEADER APÓS ROLAGEM (.scrolled) --- */
header.scrolled .top-bar {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
}

header.scrolled .main-nav .container {
    padding: 10px 30px;
}

header.scrolled .logo img {
    max-height: 45px;
}

/* ======================================================= */
/* --- SEÇÃO BANNER ROTATIVO (NOVO) --- */
/* ======================================================= */

.splide__slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Personalização das setas do slider */
.splide__arrow {
    background-color: rgba(0, 0, 0, 0.3);
}
.splide__arrow:hover {
    background-color: rgba(0, 0, 0, 0.5);
}
.splide__arrow svg {
    fill: #fff;
}

/* Personalização da paginação (bolinhas) do slider */
.splide__pagination__page {
    background-color: rgba(255, 255, 255, 0.5);
}
.splide__pagination__page.is-active {
    background-color: #75B2DF; /* Cor principal Rodaltek */
    transform: scale(1.2);
}

.area-branca { 
    background-color: #ffffff; 
}
.conteudo-interno { 
    max-width: 1300px; 
    margin: 0 auto; 
}

/* --- CARROSSEL DE PRODUTOS --- */
.product-carousel-section {
    padding: 60px 0;
}

.product-carousel {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 25px;
    padding: 20px 25px;
    scroll-snap-type: x mandatory;
}

.product-carousel::-webkit-scrollbar { display: none; }
.product-carousel { -ms-overflow-style: none; scrollbar-width: none; }

.product-card {
    flex: 0 0 270px;
    scroll-snap-align: start;
    text-align: left;
}
.product-card a { text-decoration: none; }
.product-card img {
    width: 100%;
    height: auto;
    background-color: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    margin-bottom: 15px;
}
.card-details { padding: 0 5px; }
.product-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333; /* Cor escura para boa legibilidade */
    margin-bottom: 5px;
    min-height: 50px;
}
.product-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    color: #555; /* Cor secundária */
    margin-bottom: 10px;
}

/* --- NAVEGAÇÃO DO CARROSSEL --- */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 25px;
    margin-bottom: 30px;
}

.carousel-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #75B2DF; /* COR PRINCIPAL RODALTEK */
    font-size: 0.7rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.carousel-btn:hover {
    background-color: #f0f0f0;
}

.page-indicator {
    margin: 0 15px;
    font-size: 0.7rem;
    color: #333;
    font-weight: 500;
}

/* --- SEÇÃO PRODUTO EM DESTAQUE --- */
.featured-product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 25px;
    align-items: start;
}
.featured-product-image img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}
.featured-product-details .brand {
    font-size: 0.9rem;
    color: #555; /* Cor secundária */
    text-transform: uppercase;
    margin-bottom: 8px;
}
.featured-product-details h1 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
}

.options-group {
    margin-bottom: 20px;
}
.options-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}
.option-buttons {
    display: flex;
    gap: 10px;
}
.option-btn {
    padding: 10px 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}
.option-btn.active {
    background-color: #75B2DF; /* COR PRINCIPAL RODALTEK */
    color: #fff;
    border-color: #75B2DF; /* COR PRINCIPAL RODALTEK */
}

.buy-button {
    display: block;
    width: 100%;
    background-color: #75B2DF; /* COR PRINCIPAL RODALTEK */
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    margin: 30px 0 20px;
    animation: pulse 1.7s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.share-link, .details-link {
    display: block;
    text-align: center;
    color: #555;
    text-decoration: none;
    margin-top: 10px;
}
.share-link:hover, .details-link:hover {
    color: #75B2DF; /* COR PRINCIPAL RODALTEK */
}

/* --- BOTÃO WHATSAPP --- */
.whatsapp-button { 
    position: fixed; 
    bottom: 25px; 
    right: 25px; 
    background-color: #25D366; 
    color: #fff; 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-size: 2rem; 
    text-decoration: none; 
    box-shadow: 2px 2px 8px rgba(0,0,0,0.25); 
    z-index: 999; 
    transition: transform 0.3s ease; 
}
.whatsapp-button:hover { 
    transform: scale(1.1); 
}

/* ========================================= */
/* ESTILOS DO RODAPÉ                      */
/* ========================================= */

footer {
    background-color: #75B2DF; /* COR PRINCIPAL RODALTEK */
    color: #ffffff;
    padding: 60px 25px 0 25px;
    text-align: left;
}

footer .footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

footer .footer-top > div {
    display: flex;
    flex-direction: column;
}

footer .footer-top h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

footer .footer-top a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 5px 0;
    display: block;
}

footer .footer-top a:hover {
    color: #fff;
}

footer .social-icons-grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin-top: 8px;
}

footer .social-icons-grid a {
    font-size: 1.4rem;
}

footer .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 0;
}

footer .footer-payment h4, footer .footer-seals h4 {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}
footer .footer-payment img, footer .footer-seals img {
    max-width: 100%;
    height: auto;
}

footer .footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    text-align: center;
}
footer .footer-copyright p {
    font-size: 0.8rem;
    color: #f0f0f0;
}

/* ========================================= */
/* --- ESTILOS DA PÁGINA DE PRODUTO ---       */
/* ========================================= */

/* --- BREADCRUMB --- */
.breadcrumb {
    padding: 20px 0;
    font-size: 0.8rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #75B2DF; /* COR PRINCIPAL RODALTEK */
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span {
    margin: 0 5px;
}

#back-button {
    background: none;
    border: 1px solid #ccc;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-left: auto;
}

#back-button:hover {
    background-color: #f0f0f0;
    color: #333;
}

/* --- GALERIA DE IMAGENS --- */
.product-page-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#main-product-image-container img {
    width: 100%;
    height: auto;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

#main-product-image-container img:hover {
    opacity: 0.9;
}

#extra-images-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.gallery-thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.gallery-thumbnail:hover, .gallery-thumbnail.active {
    border-color: #75B2DF; /* COR PRINCIPAL RODALTEK */
}

/* --- DESCRIÇÃO DO PRODUTO --- */
#product-description-container {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

#product-description-container h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

#product-description-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

#product-description-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

#product-description-list li:last-child {
    border-bottom: none;
}

/* ========================================= */
/* --- ESTILOS DO MODAL (LIGHTBOX) ---       */
/* ========================================= */
.modal { display: none; position: fixed; z-index: 2000; padding-top: 60px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.9); }
.modal-content-wrapper { position: relative; margin: auto; width: 80%; max-width: 700px; }
.modal-content { width: 100%; height: auto; display: block; }
.modal-close { position: absolute; top: -25px; right: 15px; color: #f1f1f1; font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer; }
.modal-close:hover, .modal-close:focus { color: #bbb; text-decoration: none; }
.modal-prev, .modal-next { cursor: pointer; position: absolute; top: 50%; width: auto; padding: 16px; margin-top: -50px; color: rgba(255, 255, 255, 0.733); font-weight: bold; font-size: 20px; transition: 0.6s ease; border-radius: 0 3px 3px 0; user-select: none; }
.modal-next { right: 0; border-radius: 3px 0 0 3px; }
.modal-prev:hover, .modal-next:hover { background-color: rgba(0, 0, 0, 0.8); }

.section-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

/* ========================================= */
/* --- ESTILOS PARA PÁGINAS ESTÁTICAS ---     */
/* ========================================= */
.static-page-content { padding: 40px 0; max-width: 800px; margin: 0 auto; line-height: 1.8; }
.static-page-content h1 { font-size: 2.2rem; font-weight: 600; color: #333; margin-bottom: 30px; border-bottom: 2px solid #75B2DF; padding-bottom: 15px; } /* COR PRINCIPAL RODALTEK */
.static-page-content h2 { font-size: 1.5rem; font-weight: 500; color: #444; margin-top: 40px; margin-bottom: 15px; }
.static-page-content p { margin-bottom: 20px; color: #555; }
.static-page-content a { color: #75B2DF; font-weight: 500; text-decoration: none; } /* COR PRINCIPAL RODALTEK */
.static-page-content a:hover { text-decoration: underline; }
.static-page-content .contact-info { margin-top: 30px; padding: 20px; background-color: #f9f9f9; border-left: 4px solid #75B2DF; } /* COR PRINCIPAL RODALTEK */

/* ========================================= */
/* --- ESTILOS DO MENU DROPDOWN --- */
/* ========================================= */
.main-nav nav ul li { position: relative; }
.dropbtn .fa-chevron-down { font-size: 0.7em; margin-left: 5px; transition: transform 0.3s ease; }
.dropdown:hover .dropbtn .fa-chevron-down { transform: rotate(180deg); }
.dropdown-content { display: none; position: absolute; background-color: #ffffff; min-width: 280px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1); z-index: 1; border-radius: 0 0 5px 5px; border-top: 2px solid #75B2DF; padding: 15px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; } /* COR PRINCIPAL RODALTEK */
.dropdown:hover .dropdown-content { display: block; opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-header { font-weight: 600; color: #333; padding: 10px 10px; font-size: 0.9rem; text-transform: uppercase; border-bottom: 1px solid #eee; }
.dropdown-header:not(:first-child) { margin-top: 15px; }
.dropdown-content a { color: #555; padding: 10px 15px; text-decoration: none; display: block; font-size: 0.85rem; text-transform: none; transition: color 0.2s ease, background-color 0.2s ease; border-radius: 4px; }
.dropdown-content a:hover { color: #75B2DF; background-color: #f5f5f5; } /* COR PRINCIPAL RODALTEK */
.dropdown-content a.disabled-link { color: #aaa; cursor: not-allowed; pointer-events: none; background-color: transparent; }

/* ========================================= */
/* --- ESTILOS DA PÁGINA DE CATEGORIA ---     */
/* ========================================= */
.category-page-header { padding: 40px 0; text-align: start; border-bottom: 1px solid #eee; margin-bottom: 40px; }
.category-page-header h1 { font-size: 1.5rem; color: #333; font-weight: 500; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; padding-bottom: 60px; }
.product-grid.acessorios-grid { grid-template-columns: repeat(4, 1fr); }

/* ========================================= */
/* --- ESTILOS DO SISTEMA DE CORES ---        */
/* ========================================= */

#product-colors-container {
    margin-top: 25px;
    margin-bottom: 15px;
}

#product-colors-container p {
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    cursor: pointer;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    background-size: cover;
    background-position: center;
}

/* Tooltip para mostrar o nome da cor */
.swatch .tooltip {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Posição acima da bolinha */
    left: 50%;
    margin-left: -60px; /* Centralizar */
    opacity: 0;
    transition: opacity 0.3s;
}

.swatch:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

#share-button {
    margin: -10px 0 20px 0;
    text-align: left;
    font-size: 0.85rem;
}

/* ======================================================= */
/* --- NOVOS ESTILOS PARA PRODUTO EM DESTAQUE (HOME) --- */
/* ======================================================= */

.featured-product-details .featured-description-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #555;
}

.featured-product-details .featured-description-list li {
    padding: 4px 0;
    display: flex;
    align-items: center;
}

.featured-product-details .featured-description-list li::before {
    content: '✔';
    color: #75B2DF; /* Cor principal da marca */
    margin-right: 8px;
    font-weight: bold;
}

.featured-product-details .featured-colors-container {
    margin-top: 20px;
    margin-bottom: 10px;
}

.featured-product-details .featured-colors-container p {
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* ========================================= */
/* --- ESTILOS DA SEÇÃO DE LOCALIZAÇÃO ---   */
/* ========================================= */

.location-section {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Um fundo leve para destacar a seção */
    text-align: center;
}

.location-section h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.location-section .conteudo-interno {
    max-width: 1200px; /* Defina a largura máxima desejada (ex: 1200px) */
    margin: 0 auto; /* Centraliza o conteúdo dentro da seção */
    padding: 0 20px; /* Mantém um espaçamento interno nas laterais */
}

.location-section .address {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.location-section .address i {
    color: #75B2DF; /* Cor principal da marca */
    margin-right: 8px;
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 50%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========================================= */
/* --- ESTILO PARA OS NOVOS BANNERS --- */
/* ========================================= */
.info-banner {
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito parallax */
    text-align: center;
    color: #fff;
    margin: 40px 0;
}

.info-banner-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro para legibilidade */
    padding: 30px;
    border-radius: 8px;
}

.info-banner h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* ========================================= */
/* --- FUNDO AZUL PARA SEÇÃO DE DESTAQUE --- */
/* ========================================= */
.featured-product-section {
    background-color: #f7fbff; /* Azul bem claro */
}

/* ========================================= */
/* --- ESTILO DO TOP-BAR (CABEÇALHO) --- */
/* ========================================= */
.top-bar {
    background-color: #75B2DF;
    color: #fff;
}



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

/* ========================================= */
/* --- RESPONSIVIDADE MOBILE ---             */
/* ========================================= */
@media (max-width: 768px) {
    body { padding-top: 85px; }

    /* --- Header Mobile --- */
    .main-nav nav, .hide-on-mobile { display: none; }
    .main-nav .container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 10px 20px; }
    .logo { grid-column: 2; justify-self: center; }
    .logo img { max-height: 40px; }
    header.scrolled .logo img { max-height: 40px; }
    .nav-icons { grid-column: 3; justify-self: end; }
    .hamburger-menu { display: block; background: none; border: none; color: #75B2DF; font-size: 1.5rem; cursor: pointer; grid-column: 1; justify-self: start; } /* COR PRINCIPAL RODALTEK */

    .area-branca .conteudo-interno { padding: 0 20px; }
    .carousel-nav { display: none; }
    .featured-product-section { grid-template-columns: 1fr; gap: 20px; padding: 30px 0; }
    .featured-product-details h1 { font-size: 1.8rem; margin-bottom: 15px; }
    .buy-button { font-size: 1rem; padding: 12px; }
    .share-link, .details-link { font-size: 0.9rem; }

    /* --- Rodapé Mobile --- */
    footer { text-align: center; }
    footer .footer-top { grid-template-columns: 1fr; gap: 20px; }
    footer .social-icons-grid { justify-content: center; }

    /* --- Página de Produto Mobile --- */
    #extra-images-gallery { grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); gap: 8px; }
    .gallery-thumbnail { height: 60px; }
    .option-buttons { flex-wrap: wrap; }
    .option-btn { padding: 8px 15px; margin-bottom: 8px; }
    #product-description-container { margin-top: 30px; padding-top: 15px; }
    .breadcrumb { padding: 15px 0; font-size: 0.7rem; }
    #back-button { padding: 6px 10px; font-size: 0.7rem; margin-left: 0; }
    .modal-content-wrapper { width: 95%; }

    /* --- Menu Mobile (Hambúrguer) --- */
    .main-nav nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: #fff; box-shadow: 0 4px 8px rgba(0,0,0,0.1); border-top: 1px solid #f0f0f0; max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out; }
    .main-nav nav.menu-visible { display: block; max-height: 500px; }
    .main-nav nav ul { flex-direction: column; gap: 0; padding: 10px 0; }
    .main-nav nav ul li { width: 100%; text-align: center; }
    .main-nav nav ul a { display: block; padding: 15px 20px; width: 100%; border-bottom: 1px solid #f5f5f5; }
    .main-nav nav ul li:last-child a { border-bottom: none; }

    /* --- Sub-menu Lateral Mobile --- */
    .dropdown { display: none; }
    .mobile-only { display: block; }
    .mobile-only a { display: flex; justify-content: space-between; align-items: center; }
    .mobile-submenu { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #fff; z-index: 1100; transform: translateX(100%); transition: transform 0.4s ease-in-out; overflow-y: auto; }
    .mobile-submenu.submenu-visible { transform: translateX(0); }
    .submenu-header { display: flex; align-items: center; padding: 0 20px; height: 85px; border-bottom: 1px solid #f0f0f0; }
    .submenu-back-btn { background: none; border: none; font-size: 1rem; font-weight: 500; color: #333; cursor: pointer; }
    .submenu-back-btn i { margin-right: 10px; }
    .submenu-content { padding: 20px; }
    .submenu-content .dropdown-header { margin-top: 20px; }
    .submenu-content .dropdown-header:first-child { margin-top: 0; }
    .submenu-content a { display: block; padding: 12px 10px; text-decoration: none; color: #555; font-size: 1rem; border-bottom: 1px solid #f5f5f5; }
    .submenu-content a.disabled-link { color: #aaa; pointer-events: none; }
}