/* --- Global Styles --- */
body {
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

/* --- Navigation & Header --- */
.nav-link.active,
#products-dropdown-button.active {
    color: #ff6600;
    font-weight: 700;
}

/* --- Product Page: Sidebar Navigation --- */
.product-nav-link.active {
    background-color: #ff6600;
    color: white;
    font-weight: 600;
}
.product-nav-link.active img {
    border-color: #ff6600;
}

/* --- Product Page: Image Gallery Fade Effect --- */
#main-image-container {
    transition: opacity 0.4s ease-in-out;
}

/* --- Product Page: FAQ Accordion --- */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}
.faq-item.active .faq-question {
    background-color: #f9fafb; /* gray-50 */
}
.faq-question .lucide-chevron-down {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question .lucide-chevron-down {
    transform: rotate(180deg);
}

/* --- Animation Styles --- */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.fade-in {
    transform: translateY(20px);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-on-load {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.fade-in-on-load.is-loaded {
    opacity: 1;
}
