/*
Theme Name: Novacraft Theme
Theme URI: https://novacraft.com
Author: Antigravity
Author URI: https://google.com
Description: Custom WordPress theme for Novacraft converted from HTML.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: novacraft
*/

/* 
   Note: Main styles are handled by Tailwind CSS via CDN as per the original HTML.
   This file is mainly for WordPress required metadata and custom overrides if necessary.
*/

/* Dropdown transitions from index.html */
.dropdown-content {
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
.dropdown-content.show {
    display: block;
    opacity: 1;
}

/* Slider transitions from index.html */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    pointer-events: none;
}
.slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Custom checkbox style from products.html */
.custom-checkbox:checked { 
    background-color: #F5C542; 
    border-color: #F5C542; 
}

/* Tabs styles from product-detail.html */
.tab-content { 
    display: none; 
}
.tab-content.active { 
    display: block; 
}
.tab-btn.active { 
    border-bottom: 2px solid #F5C542; 
    color: #0A1128; 
    font-weight: 600; 
}

/* Utility to hide scrollbar but keep functionality */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
