/* Inline critical CSS here */
.introduce .seeMore { color: white; }
.carousel .arrows button { color: white; background-color: transparent; border: 1px solid white; }
.carousel .arrows button:hover { background-color: rgba(255, 255, 255, 0.2); }
.product-info { position: relative; overflow: hidden; }
.product-name, .product-price { display: block; transition: opacity 0.3s ease; position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.product-price { opacity: 0; }
.item:hover .product-name { opacity: 0; }
.item:hover .product-price { opacity: 1; }
.price-reveal { font-family: monospace; color: white; text-shadow: 0 0 5px white; }

/* Custom Toastr positioning */
.toast-top-right {
    padding-top: 60px;
}

.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0 0;
    font-size: 15px;
    line-height: 24px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-right: 30px; /* Add space for the end icon */
}

.footer-section h3::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px; 
    bottom: -2px;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.footer-section h3:hover::after {
    width: 100%;
}

.footer-section h3 .icon {
    display: none;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.footer-section h3 .end-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section h3:hover .end-icon {
    opacity: 1;
}

.footer-section-content {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li,
.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li:hover,
.footer-section ul li a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-label {
    font-weight: bold;
    margin-right: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
    margin-top: 10px;
}

.social-icon:hover {
    color: #1a1a1a;
    background-color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #0f0f0f;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #cccccc;
}

.nous-x {
    font-family: 'Blanka', sans-serif;
    font-size: 16px; /* Adjust this value as needed */
    letter-spacing: 1px; /* Adjust this value as needed */
}

@media (max-width: 767px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-section h3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #444; /* Darker divider color */
        margin: 0; /* Remove any default margin */
        padding-right: 0; /* Remove padding for mobile view */
    }

    .footer-section h3::after {
        content: none; /* Remove the underline effect in mobile view */
    }

    .footer-section h3 .icon {
        display: inline-block;
        margin-left: 10px; /* Add some space between text and icon */
        transition: transform 0.3s ease;
    }

    .footer-section h3.active .icon {
        transform: rotate(180deg);
    }

    .footer-section h3 .end-icon {
        display: none; /* Hide end icon on mobile */
    }

    .footer-section-content {
        max-height: 0;
    }

    .footer-section-content.active {
        max-height: 1000px;
    }

    .footer-section p::after,
    .footer-section ul li a::after,
    .social-icon::after {
        display: none;
    }

    .footer-section p:hover,
    .footer-section ul li a:hover,
    .social-icon:hover {
        transform: none;
    }

    .matrix-effect::before {
        display: none;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
    }

    .contact-label {
        margin-bottom: 2px;
    }

    .contact-value {
        padding-left: 10px;
    }

    .footer-section ul li {
        margin-bottom: 15px;
    }

    .footer-section ul li:hover {
        transform: none;
    }
}

/* Matrix effect styles */
.matrix-effect {
    position: relative;
    display: inline;
    cursor: default;
}

.matrix-word {
    position: relative;
    display: inline-block;
}

.matrix-word::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.matrix-word:hover::before {
    opacity: 1;
}
