/*
Theme Name: SORIVAS Tech Theme
Description: Tema custom pentru SORIVAS SERVICE IT, optimizată pentru Dark Mode și performanță.
Version: 2.2
Author: Sorivas Dev
*/

/* ==============================================
   1. VARIABLES & RESET
   ============================================== */
:root { 
    --brand-accent: #00f2ff; /* Cyan Electric */
    --brand-secondary: #0066ff; /* Tech Blue */
    --brand-dark: #0b1114; /* Deep Petrol */
    --brand-surface: #141b1f;
    --text-dim: #94a3b8;
    --cursor-size: 20px;
    --mouse-x: 50%; 
    --mouse-y: 50%; 
}

html {
    scroll-behavior: smooth;
}

body { 
    background-color: var(--brand-dark); 
    color: #e2e8f0; 
    font-family: 'Inter', sans-serif;
    /* Cursor vizibil standard pentru Sorivas */
    cursor: auto; 
    overflow-x: hidden;
}

/* ==============================================
   2. GLOBAL UI ELEMENTS
   ============================================== */
.bg-noise { 
    position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.03; 
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); 
}

::selection {
    background: var(--brand-accent);
    color: #000;
}

/* Scrollbar Custom */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brand-dark); }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-accent); }

/* Buttons & Links */
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--brand-accent); }

.hover-link { cursor: pointer; }

/* ==============================================
   3. UTILITIES & ANIMATIONS
   ============================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}
.animate-pulse-slow {
    animation: pulse-slow 8s infinite ease-in-out;
}

/* ==============================================
   4. WOOCOMMERCE OVERRIDES (Global)
   ============================================== */
/* Pagination Custom */
.pagination-custom ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}
.pagination-custom li a, 
.pagination-custom li span.current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px; border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    color: #fff; font-size: 14px; font-weight: 600;
    transition: all 0.3s ease; text-decoration: none;
}
.pagination-custom li a:hover, 
.pagination-custom li span.current {
    background: var(--brand-accent); 
    border-color: var(--brand-accent);
    color: #000; 
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
}

/* Shop Ordering Dropdown */
.shop-ordering-custom select {
    background-color: #141b1f; color: #fff;
    border: 1px solid rgba(0, 242, 255, 0.2);
    padding: 10px 20px; border-radius: 99px;
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
    cursor: pointer; outline: none; transition: all 0.3s;
    appearance: none;
}