/* 
   DESI ACCESSORIES - REFINED PREMIUM v4
   Fixing Blue color and Dark Text Contrast Issues
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Unbounded:wght@400;700&display=swap');

:root {
    --cat-accessories-gold: #FFC107;
    --cat-color: #FFC107;
}

.cat-accessories { --cat-color: var(--cat-accessories-gold); }

/* --- 1. CORE & TYPOGRAPHY --- */
.desi-smart-content {
    font-family: 'Inter', sans-serif !important;
    line-height: 1.6;
}

/* Force Gold for Primary across all contexts */
.cat-accessories .uk-text-primary,
.cat-accessories .text-primary,
.cat-accessories .uk-heading-medium span,
.cat-accessories .uk-h1 span,
.cat-accessories .uk-h2 span { 
    color: var(--cat-accessories-gold) !important; 
}

/* Fix Unreadable Dark Text on Dark Backgrounds */
.desi-smart-content .uk-light h1,
.desi-smart-content .uk-light h2,
.desi-smart-content .uk-light h3,
.desi-smart-content .uk-light .uk-h1,
.desi-smart-content .uk-light .uk-h2,
.desi-smart-content .uk-light .uk-h3,
.desi-smart-content .uk-light .uk-text-lead,
.desi-smart-content .uk-section-secondary h1,
.desi-smart-content .uk-section-secondary h2,
.desi-smart-content .uk-section-secondary h3,
.desi-smart-content .uk-section-secondary .uk-h1,
.desi-smart-content .uk-section-secondary .uk-h2,
.desi-smart-content .uk-section-secondary .uk-h3 {
    color: #FFFFFF !important;
}

/* Titles Style */
.desi-smart-content h1, 
.desi-smart-content h2, 
.desi-smart-content h3, 
.desi-smart-content .uk-h1, 
.desi-smart-content .uk-h2, 
.desi-smart-content .uk-h3 {
    font-family: 'Unbounded', cursive !important;
    text-transform: uppercase;
    font-weight: 700 !important;
}

/* --- 2. HERO & OVERLAY FIXES --- */
.desi-smart-content .hero-overlay,
.desi-smart-content .innovation-overlay {
    position: absolute !important;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2 !important;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%) !important;
}

/* Readable Labels (RECOGNITION, STORAGE) */
.cat-accessories .text-dim {
    color: rgba(255,255,255,0.7) !important;
    font-size: 13px;
    letter-spacing: 1px;
}

/* --- 3. PREMIUM CARDS --- */
.desi-smart-content .uk-card-default {
    background: #ffffff !important;
    border-radius: 12px !important;
    border-top: 5px solid var(--cat-accessories-gold) !important;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    border-left: 1px solid rgba(0,0,0,0.05) !important;
    border-right: 1px solid rgba(0,0,0,0.05) !important;
}

.desi-smart-content .uk-card-default:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.desi-smart-content .card-icon-wrap svg {
    width: 50px !important;
    height: 50px !important;
    color: var(--cat-accessories-gold) !important;
}

/* --- 4. UTILITIES --- */
.desi-smart-content .text-accent { color: var(--cat-accessories-gold) !important; }
.desi-smart-content .text-shadow { text-shadow: 0 4px 12px rgba(0,0,0,0.8); }
.desi-smart-content .ls-v-wide { letter-spacing: 3px; }

/* Glows */
.desi-smart-content .glow-ring { width: 12px; height: 12px; border-radius: 50%; display: inline-block; margin-right: 15px; background: var(--cat-accessories-gold); box-shadow: 0 0 10px var(--cat-accessories-gold); }
.desi-smart-content .glow-teal { background: #1de9b6; box-shadow: 0 0 10px #1de9b6; }

/* --- 5. MICRO-INTERACTIONS & REFINEMENTS --- */
.desi-smart-content .uk-card-default:hover .card-icon-wrap svg {
    transform: scale(1.15);
}
.desi-smart-content .card-icon-wrap svg {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* Glass Stats Box */
.desi-smart-content .glass-stats-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 15px 30px;
    display: inline-flex;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

/* Spec List Hover Interactions */
.desi-smart-content .spec-item {
    transition: all 0.3s ease;
    padding: 12px 15px;
    border-radius: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.desi-smart-content .spec-item:last-child {
    border-bottom: none;
}
.desi-smart-content .spec-item:hover {
    padding-left: 20px;
    background: #ffffff;
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
    border-bottom-color: transparent;
    transform: translateX(5px);
}

/* Glowing Animations */
@keyframes desi-pulse-gold {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

@keyframes desi-pulse-teal {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(29, 233, 182, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(29, 233, 182, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(29, 233, 182, 0); }
}

.desi-smart-content .glow-ring.pulsing {
    animation: desi-pulse-gold 2s infinite;
}
.desi-smart-content .glow-ring.pulsing-teal {
    animation: desi-pulse-teal 2s infinite;
}

/* --- 6. UTILITY / COMPONENT REPLACEMENTS FOR INLINE STYLES --- */

/* Typography Colors */
.cat-accessories .text-white { color: #ffffff !important; }
.cat-accessories .text-white-80 { color: rgba(255,255,255,0.8) !important; }
.cat-accessories .text-white-70 { color: rgba(255,255,255,0.7) !important; }
.cat-accessories .text-gray-600 { color: #666666 !important; }
.cat-accessories .text-gray-400 { color: #444444 !important; }
.cat-accessories .text-gray-300 { color: #333333 !important; }

/* Font Weights */
.cat-accessories .fw-400 { font-weight: 400 !important; }
.cat-accessories .fw-500 { font-weight: 500 !important; }
.cat-accessories .fw-600 { font-weight: 600 !important; }

/* Font Sizes */
.cat-accessories .fs-18 { font-size: 18px !important; }

/* Structural */
.cat-accessories .z-index-10 { z-index: 10 !important; }
.cat-accessories .z-index-3 { z-index: 3 !important; }

/* Stats Component (Hero) */
.cat-accessories .stats-label {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,0.8);
}
.cat-accessories .stats-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    margin: 0 30px;
}

/* Image/Media Coverage Options */
.cat-accessories .desi-bg-cover {
    background-size: cover;
    background-position: center;
    display: block;
    width: 100%;
}
.cat-accessories .desi-radius-premium { border-radius: 24px; }
.cat-accessories .desi-shadow-media { box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.cat-accessories .desi-shadow-media-dark { box-shadow: 0 30px 60px rgba(0,0,0,0.12); }

.cat-accessories .ratio-1-1 { padding-bottom: 100%; }
.cat-accessories .ratio-landscape { padding-bottom: 68.75%; }
.cat-accessories .min-h-350 { min-height: 350px; }
