:root {
    --primary-color: #ff7200;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-dark: #34495e;
    --text-light: #7f8c8d;
    --background-light: #ecf0f1;
    --light-color: #ffffff;
    --dark-gradient: linear-gradient(to right, #2c3e50, #34495e);
    --border-color: #ddd;
}

.btn-cart.disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}

.btn-cart.disabled:hover {
    background-color: #cccccc;
    transform: none;
    box-shadow: none;
}

.btn-cart.disabled .cart-count {
    background-color: #999999;
    color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    background-color: var(--background-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.page-header {
    width: 100%;
    background: var(--dark-gradient);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.logo-area {
    display: flex;
    align-items: center;
}

.header-logo-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.header-title {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: 0.5px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-nav ul {
    display: flex;
    gap: 35px;
}

.header-nav ul li {
    position: relative;
}

.header-nav ul li a {
    color: var(--light-color);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease, transform 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.header-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: transform 0.3s ease;
}

.header-nav ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.header-nav ul li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.header-nav ul li.active-menu-item a {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color); 
    padding-bottom: 7px;
}

.menu-badge {
    background-color: var(--accent-color);
    color: var(--light-color);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.header-nav .sousmenu {
    display: none;
    position: absolute;
    background-color: var(--secondary-color);
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    min-width: 220px;
    z-index: 1;
    border-top: 4px solid var(--primary-color);
    padding: 15px 0 10px 0;
    top: 100%;
    left: 0;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-nav .menuderoulant li:hover > .sousmenu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.header-nav .sousmenu li a {
    color: var(--light-color); 
    padding: 12px 25px;
    display: block;
    font-size: 1.05rem;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-family: 'Roboto', sans-serif;
}

.header-nav .sousmenu li a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.btn-cart:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cart-count {
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-left: 5px;
}

.construction-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.construction-container {
    max-width: 800px;
    text-align: center;
    background-color: var(--light-color);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-color);
}

.construction-icon {
    margin-bottom: 30px;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.construction-title {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.construction-message {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.construction-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    padding-top: 30px;
    border-top: 2px dashed var(--border-color);
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.detail-item i {
    font-size: 2rem;
    color: var(--primary-color);
    background-color: var(--background-light);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.detail-item:hover i {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: scale(1.1);
}

.detail-item p {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.construction-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-home, .btn-contact {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-home {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-home:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.btn-contact {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-contact:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(44, 62, 80, 0.3);
}

main {
    margin-top: 100px;
}

footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 70px 20px 25px;
    font-size: 0.98rem;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1300px;
    margin: 0 auto 50px auto;
    text-align: left;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 280px;
    margin-bottom: 25px;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.55rem;
    margin-bottom: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.footer-section p, .footer-section ul {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-section p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-section a {
    color: var(--light-color);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.footer-logo .logo {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
}

.schedule-list li {
    margin-bottom: 10px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.schedule-list li i {
    color: var(--accent-color);
}

.payment-methods {
    margin-bottom: 20px;
}

.payment-methods h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.payment-methods p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.payment-methods p i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: all 0.3s ease;
    font-size: 1.3rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(255,114,0,0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 25px;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
}

.footer-bottom p span {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-legal-links a {
    color: #aaa;
    margin: 0 18px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--accent-color);
}

.mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--dark-gradient);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo .header-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid var(--primary-color);
}

.mobile-logo .header-title {
    font-size: 2rem;
    color: var(--primary-color);
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--light-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1200px) {
    .header-content {
        padding: 0 15px;
    }
    .header-nav ul {
        gap: 25px;
    }
    .header-nav ul li a {
        font-size: 1.05rem;
    }
}

@media (max-width: 1024px) {
    .page-header {
        padding: 10px 0;
    }
    .page-header .header-content {
        display: none; 
    }
    .mobile-header {
        display: flex;
    }
    
    .header-nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 75px; 
        left: 0;
        width: 100%;
        height: calc(100% - 75px);
        background-color: rgba(0,0,0,0.95);
        overflow-y: auto;
        padding: 20px 0;
        align-items: center;
        z-index: 999;
        transform: translateX(0); 
    }

    .header-nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
    }

    .header-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .header-nav ul li:last-child {
        border-bottom: none;
    }

    .header-nav ul li a {
        padding: 15px 0;
        display: block;
        font-size: 1.3rem;
    }

    .header-nav .sousmenu {
        position: static; 
        display: none; 
        width: 100%;
        box-shadow: none;
        border-top: none;
        padding: 0;
        background-color: rgba(0,0,0,0.8);
        border-radius: 0;
        opacity: 1; 
        transform: translateY(0);
    }

    .header-nav .menuderoulant li.active > .sousmenu {
        display: block;
    }

    .header-nav .sousmenu li a {
        padding: 10px 0 10px 40px;
        font-size: 1.1rem;
    }

    main {
        margin-top: 75px;
    }

    .construction-title {
        font-size: 2.2rem;
    }
    
    .construction-message {
        font-size: 1.1rem;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-section {
        min-width: unset;
        width: 100%;
        margin-bottom: 30px;
    }
    .footer-section h3 {
        font-size: 1.4rem;
    }
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
    .footer-legal-links a {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .construction-title {
        font-size: 2rem;
    }
    
    .construction-message {
        font-size: 1rem;
    }
    
    .construction-container {
        padding: 40px 20px;
    }
    
    .construction-details {
        gap: 20px;
    }
    
    .detail-item {
        min-width: 120px;
    }
    
    .detail-item i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .construction-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-home, .btn-contact {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .mobile-logo .header-title {
        font-size: 1.5rem;
    }
    .mobile-logo .header-logo-img {
        width: 40px;
        height: 40px;
    }

    .construction-title {
        font-size: 1.8rem;
    }
    
    .construction-container {
        padding: 30px 15px;
    }
    
    .construction-details {
        flex-direction: column;
        gap: 25px;
    }
    
    .detail-item {
        min-width: 100%;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }
    .footer-logo .logo {
        font-size: 2rem;
    }
}