/**
 * Thermico Mobile Menu Styles
 */

/* Base styles */
.thermico-mobile-menu {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9999;
}

/* Burger menu toggle button */
.thermico-mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
    outline: none;
}

.thermico-mobile-toggle:hover,
.thermico-mobile-toggle:focus {
    outline: none;
    background: transparent;
    border: none;
}

/* Close button (X) */
.thermico-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.thermico-mobile-close:hover,
.thermico-mobile-close:focus {
    outline: none;
    background: transparent;
    border: none;
}

.thermico-mobile-close-icon {
    position: relative;
    width: 30px;
    height: 30px;
}

.thermico-mobile-close-icon:before,
.thermico-mobile-close-icon:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--thermico-mobile-primary-color-start, #08A257);
    border-radius: 3px;
}

.thermico-mobile-close-icon:before {
    transform: rotate(45deg);
}

.thermico-mobile-close-icon:after {
    transform: rotate(-45deg);
}

.thermico-mobile-bar {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--thermico-mobile-primary-color-start, #08A257), var(--thermico-mobile-primary-color-end, #00426A));
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Animated burger to X */
.thermico-mobile-toggle.active .thermico-mobile-bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.thermico-mobile-toggle.active .thermico-mobile-bar:nth-child(2) {
    opacity: 0;
}

.thermico-mobile-toggle.active .thermico-mobile-bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Overlay styles */
.thermico-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(var(--thermico-mobile-background-blur, 10px));
    -webkit-backdrop-filter: blur(var(--thermico-mobile-background-blur, 10px));
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.thermico-mobile-overlay-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Menu container */
.thermico-mobile-menu-container {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Menu level */
.thermico-mobile-menu-level {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease-in-out;
    transform: translateX(100%);
    opacity: 0;
}

.thermico-mobile-menu-level.active {
    transform: translateX(0);
    opacity: 1;
}

.thermico-mobile-menu-level.previous {
    transform: translateX(-100%);
    opacity: 0;
}

/* Menu items */
.thermico-mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.thermico-mobile-menu-item {
    margin: 15px 0;
}

.thermico-mobile-menu-link {
    display: block;
    font-size: 24px;
    color: var(--thermico-mobile-primary-color-end, #00426A);
    text-decoration: none;
    padding: 10px;
    transition: all 0.2s ease;
    background: linear-gradient(to right, var(--thermico-mobile-primary-color-start, #08A257), var(--thermico-mobile-primary-color-end, #00426A));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thermico-mobile-menu-link:hover,
.thermico-mobile-menu-link:focus {
    transform: scale(1.05);
}

/* Back button */
.thermico-mobile-back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: transparent;
    border: none;
    color: var(--thermico-mobile-primary-color-start, #08A257);
    font-size: 16px;
    cursor: pointer;
    padding: 10px;
    outline: none;
}

.thermico-mobile-back-button:hover,
.thermico-mobile-back-button:focus {
    outline: none;
    background: transparent;
    border: none;
    color: var(--thermico-mobile-primary-color-start, #08A257);
}

.thermico-mobile-back-button svg {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

/* Level title */
.thermico-mobile-level-title {
    font-size: 18px;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--thermico-mobile-primary-color-start, #08A257), var(--thermico-mobile-primary-color-end, #00426A));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* Has children indicator */
.thermico-mobile-has-children {
    position: relative;
    padding-right: 20px;
}

.thermico-mobile-has-children::after {
    content: '›';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--thermico-mobile-primary-color-start, #08A257);
}

/* Responsive adjustments */
@media (min-width: 1024px) {
    .thermico-mobile-menu {
        display: none;
    }
}

/* Animation for menu items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thermico-mobile-menu-item {
    animation: fadeInUp 0.3s ease forwards;
    opacity: 0;
}

.thermico-mobile-menu-item:nth-child(1) { animation-delay: 0.1s; }
.thermico-mobile-menu-item:nth-child(2) { animation-delay: 0.2s; }
.thermico-mobile-menu-item:nth-child(3) { animation-delay: 0.3s; }
.thermico-mobile-menu-item:nth-child(4) { animation-delay: 0.4s; }
.thermico-mobile-menu-item:nth-child(5) { animation-delay: 0.5s; }
.thermico-mobile-menu-item:nth-child(6) { animation-delay: 0.6s; }
.thermico-mobile-menu-item:nth-child(7) { animation-delay: 0.7s; }
.thermico-mobile-menu-item:nth-child(8) { animation-delay: 0.8s; }
.thermico-mobile-menu-item:nth-child(9) { animation-delay: 0.9s; }
.thermico-mobile-menu-item:nth-child(10) { animation-delay: 1s; }
