@charset "UTF-8";

/* ==========================================================================
   JfyPower Global Styles
   Core colors: 
   - Primary (Green): #00b894
   - Accent (Orange): #FF9000
   - Dark: #0f172a
   ========================================================================== */

/* --------------------------------------------------------------------------
   Typography & Base
   -------------------------------------------------------------------------- */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #0f172a; /* Fallback for dark theme base */
    color: #e2e8f0;
    -webkit-font-smoothing: antialiased;
}

/* Impact Font Fix for Logo */
.font-impact {
    font-family: 'Impact', 'Oswald', sans-serif;
}

/* --------------------------------------------------------------------------
   Custom Utilities
   -------------------------------------------------------------------------- */
.text-accent {
    color: #FF9000;
}

.bg-accent {
    background-color: #FF9000;
}

.border-accent {
    border-color: #FF9000;
}

/* --------------------------------------------------------------------------
   Animations & Effects
   -------------------------------------------------------------------------- */

/* Neon Glow Effect */
.shadow-glow-accent {
    box-shadow: 0 0 15px rgba(255, 144, 0, 0.4);
    transition: box-shadow 0.3s ease;
}

.shadow-glow-accent:hover {
    box-shadow: 0 0 25px rgba(255, 144, 0, 0.6);
}

.shadow-glow-primary {
    box-shadow: 0 0 15px rgba(0, 184, 148, 0.4);
    transition: box-shadow 0.3s ease;
}

.shadow-glow-primary:hover {
    box-shadow: 0 0 25px rgba(0, 184, 148, 0.6);
}

/* Gradient Text Animation */
.animate-gradient-text {
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* --------------------------------------------------------------------------
   Component Styles
   -------------------------------------------------------------------------- */

/* Product Card Hover Effect */
.product-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF9000; /* Accent color on hover */
}

/* --------------------------------------------------------------------------
   Page Specific: Product Detail
   -------------------------------------------------------------------------- */
.spec-table tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.03);
}

.spec-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-table tr:last-child td {
    border-bottom: none;
}

/* Gallery Thumbnails */
.gallery-thumb.active {
    border-color: #FF9000;
    opacity: 1;
}

/* Tab Navigation */
.tab-btn {
    position: relative;
    padding-bottom: 2px;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF9000;
    transition: width 0.3s ease;
}

.tab-btn.active {
    color: #FF9000;
}

.tab-btn.active::after {
    width: 100%;
}
