/* ============================================
   RENABEL CONCEPT — Global Styles
   Shared across ALL pages
   ============================================ */

/* 1. CSS VARIABLES */
:root {
    --rnb-dark: #0B0F19;
    --rnb-dark-alt: #111827;
    --rnb-card: #1A2036;
    --rnb-accent: #F59E0B;
    --rnb-accent-hover: #D97706;
    --rnb-accent-light: #FBBF24;
    --rnb-blue: #3B82F6;
    --rnb-text: #F1F5F9;
    --rnb-text-muted: #94A3B8;
    --rnb-text-dim: #64748B;
    --rnb-border: #1E293B;
    --rnb-success: #10B981;
    --rnb-error: #EF4444;
    --rnb-warning: #D97706;
    --rnb-radius: 16px;
    --rnb-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    --rnb-accent-rgb: 245, 158, 11;
    --rnb-blue-rgb: 59, 130, 246;
    --cursor-size: 20px;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

/* ---- SHARED UTILITIES ---- */

/* Container */
.rnb-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.rnb-container--narrow { max-width: 960px; }
.rnb-container--wide { max-width: 1400px; }

/* Icon sizes (replace Tailwind w-N h-N) */
.rnb-icon-xs  { width: 12px; height: 12px; flex-shrink: 0; }
.rnb-icon-sm  { width: 16px; height: 16px; flex-shrink: 0; }
.rnb-icon-md  { width: 20px; height: 20px; flex-shrink: 0; }
.rnb-icon-lg  { width: 24px; height: 24px; flex-shrink: 0; }
.rnb-icon-xl  { width: 32px; height: 32px; flex-shrink: 0; }
.rnb-icon-2xl { width: 40px; height: 40px; flex-shrink: 0; }
.rnb-icon-3xl { width: 48px; height: 48px; flex-shrink: 0; }
.rnb-icon-4xl { width: 64px; height: 64px; flex-shrink: 0; }
.rnb-icon-inline { display: inline-block; vertical-align: middle; }

/* Section spacing */
.rnb-section {
    padding: 80px 0;
    position: relative;
}
.rnb-section--alt { background-color: var(--rnb-dark-alt); }

/* Section headers */
.rnb-section-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rnb-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.rnb-section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.rnb-section-desc {
    color: var(--rnb-text-muted);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 640px;
}

.rnb-section-divider {
    width: 64px;
    height: 4px;
    margin: 20px auto 0;
    background: linear-gradient(90deg, var(--rnb-accent), var(--rnb-blue));
    border-radius: 9999px;
}

/* Badge pill */
.rnb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 16px;
    background: rgba(var(--rnb-accent-rgb), 0.1);
    border: 1px solid rgba(var(--rnb-accent-rgb), 0.2);
    border-radius: 9999px;
    color: var(--rnb-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Background orbs (decorative) */
.rnb-bg-orbs {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.rnb-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
}

.rnb-bg-orb--amber {
    background: rgba(var(--rnb-accent-rgb), 0.06);
    width: 400px; height: 400px;
    top: -10%; right: -5%;
}

.rnb-bg-orb--blue {
    background: rgba(var(--rnb-blue-rgb), 0.04);
    width: 350px; height: 350px;
    bottom: -10%; left: -5%;
}

/* Page wrapper (standard page with fixed header clearance) */
.rnb-page {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: var(--rnb-dark);
}

.rnb-page--no-pt { padding-top: 0; }

/* Text center helper */
.rnb-text-center { text-align: center; }

/* CTA Button (page-level) */
.rnb-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--rnb-accent), var(--rnb-accent-light));
    color: var(--rnb-dark) !important;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(var(--rnb-accent-rgb), 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}
.rnb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(var(--rnb-accent-rgb), 0.4);
}

.rnb-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--rnb-text) !important;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    border: 1px solid var(--rnb-border);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}
.rnb-btn-outline:hover {
    border-color: var(--rnb-accent);
    background: rgba(var(--rnb-accent-rgb), 0.05);
}

/* 2. RESET & BASE */
html { scroll-behavior: smooth; }

html {
    overflow-x: hidden;
}

body {
    background-color: var(--rnb-dark);
    color: var(--rnb-text);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Ascunde cursorul nativ DOAR pe desktop unde cursorul custom e vizibil (>921px) */
@media (min-width: 922px) {
    body { cursor: none; }
}

h1, h2, h3, h4, h5, h6 { font-family: 'Sora', sans-serif; }

.font-sora { font-family: 'Sora', sans-serif; }
.font-dm { font-family: 'DM Sans', sans-serif; }

/* 3. CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--rnb-dark); }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--rnb-accent); }

/* 4. UI ELEMENTS */
.bg-noise {
    position: fixed; inset: 0; pointer-events: none; z-index: 50; opacity: 0.04;
    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");
}

.spotlight-overlay {
    position: fixed; inset: 0; pointer-events: none; z-index: 1;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.03), transparent 40%);
}

.ambient-orb {
    position: fixed; border-radius: 50%; filter: blur(80px); opacity: 0.15; z-index: 0;
    animation: rnb-blob 20s infinite alternate; pointer-events: none;
}

/* 5. SCROLL PROGRESS */
.progress-bar {
    position: fixed; top: 0; left: 0; height: 3px;
    background: linear-gradient(90deg, var(--rnb-accent), var(--rnb-blue));
    width: 0%; z-index: 10005; transition: width 0.1s;
}

/* 6. CUSTOM CURSOR */
.cursor-dot {
    width: 6px; height: 6px; background: var(--rnb-accent); border-radius: 50%;
    position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
    pointer-events: none; z-index: 999999;
}

.cursor-circle {
    width: 40px; height: 40px; border: 1px solid rgba(245, 158, 11, 0.3); border-radius: 50%;
    position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
    pointer-events: none; z-index: 999998; transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
    backdrop-filter: blur(1px);
}

.cursor-circle.hovered {
    width: 60px; height: 60px; background: rgba(245, 158, 11, 0.1); border-color: var(--rnb-accent);
}

/* 7. HOVER EFFECTS */
.hover-link { position: relative; }
.hover-link::after {
    content: ''; position: absolute; width: 0; height: 1px; bottom: -2px; left: 0;
    background-color: var(--rnb-accent); transition: width 0.3s ease;
}
.hover-link:hover::after { width: 100%; }

.mobile-menu-active { overflow: hidden; }

/* 8. UTILITY CLASSES */
.text-accent { color: var(--rnb-accent); }
.text-gradient-gold {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-panel {
    background: rgba(26, 32, 54, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: var(--rnb-radius, 16px);
    padding: 2rem;
}

/* Astra global background reset — forțează dark pe toate paginile */
.ast-plain-container,
.ast-separate-container,
.site-content,
#primary,
#page,
.ast-container,
.ast-woocommerce-container,
.content-area,
.site-main {
    background-color: var(--rnb-dark) !important;
}

/* FIX CRITIC: Astra #page flex layout — footer overlap prevention */
#page {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
}

#page > .site-content,
#page > #content {
    flex-grow: 1 !important;
    flex-shrink: 0 !important;
    width: 100% !important;
}

/* 9. 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 rnb-blob {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -80px) scale(1.1); }
    50% { transform: translate(-40px, 60px) scale(0.9); }
    75% { transform: translate(30px, -30px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes rnb-fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* 10. WOOCOMMERCE UTILITIES */
.amount { color: inherit; }
del .amount { opacity: 0.5; text-decoration: line-through; font-size: 0.8em; margin-right: 8px; }
ins { text-decoration: none; color: var(--rnb-accent); }

/* ==========================================================================
   10B. WOOCOMMERCE NOTICES — GLOBAL (toate paginile)
   ========================================================================== */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.wc-block-components-notice-banner {
    background-color: var(--rnb-card) !important;
    color: var(--rnb-text) !important;
    border: 1px solid var(--rnb-border) !important;
    border-left: 4px solid var(--rnb-accent) !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    margin: 0 0 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.925rem !important;
    line-height: 1.5 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
    list-style: none !important;
    flex-wrap: wrap !important;
}

.woocommerce-error {
    border-left-color: var(--rnb-error) !important;
}

.woocommerce-info {
    border-left-color: var(--rnb-blue) !important;
}

/* Icon/emoji la începutul notificării */
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    flex-shrink: 0 !important;
    font-size: 1.25rem !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    top: auto !important;
    left: auto !important;
    position: static !important;
    display: inline-block !important;
}

/* Buton "Vezi coșul" / "View cart" */
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
    order: 3 !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
    background: rgba(var(--rnb-accent-rgb), 0.1) !important;
    border: 1px solid rgba(var(--rnb-accent-rgb), 0.3) !important;
    color: var(--rnb-accent) !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
    white-space: nowrap !important;
    font-family: 'Sora', sans-serif !important;
}

.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.woocommerce-error .button:hover {
    background: var(--rnb-accent) !important;
    color: var(--rnb-dark) !important;
    border-color: var(--rnb-accent) !important;
}

/* WooCommerce error list items */
.woocommerce-error li {
    list-style: none !important;
    color: var(--rnb-text) !important;
}

/* Notices inside cart, checkout, account etc. */
.woocommerce .woocommerce-notices-wrapper {
    width: 100%;
    margin-bottom: 16px;
}

/* 11. ASTRA CHILD THEME RESETS */
.woocommerce .col2-set,
.woocommerce-page .col2-set,
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* ==========================================================================
   12. PNRR TOP BAR
   ========================================================================== */
.rnb-pnrr-top-bar {
    background: #FFFFFF;
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 10002;
    line-height: 0;
    font-size: 0;
}

.rnb-pnrr-banner-link {
    display: block;
    line-height: 0;
}

.rnb-pnrr-banner-link img {
    height: 40px;
    width: auto;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    object-fit: contain;
}

@media (min-width: 768px) {
    .rnb-pnrr-banner-link img {
        height: 50px;
    }
}

@media (min-width: 1200px) {
    .rnb-pnrr-banner-link img {
        height: 60px;
    }
}

/* ==========================================================================
   13. HEADER PRINCIPAL
   ========================================================================== */
.rnb-custom-header {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 10001;
    padding: 20px 0;
    background: var(--rnb-dark);
    border-bottom: 1px solid var(--rnb-border);
    transition: top 0.3s ease, background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

@media (min-width: 768px) {
    .rnb-custom-header {
        top: 50px;
    }
}

@media (min-width: 1200px) {
    .rnb-custom-header {
        top: 60px;
    }
}

.rnb-custom-header.is-scrolled {
    top: 0;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.rnb-header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.rnb-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--rnb-text);
    transition: transform 0.3s ease;
}

.rnb-logo:hover {
    transform: translateY(-1px);
}

.rnb-logo__icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--rnb-accent), var(--rnb-accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--rnb-dark);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
    font-family: 'Sora', sans-serif;
}

.rnb-logo__text {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1;
    font-family: 'Sora', sans-serif;
}

.rnb-logo__text span {
    color: var(--rnb-accent);
    font-weight: 500;
}

/* Navigatie Desktop */
.rnb-nav {
    display: block;
}

.rnb-nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rnb-nav__link {
    text-decoration: none;
    color: var(--rnb-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.rnb-nav__link:hover {
    color: var(--rnb-text);
    background: rgba(245, 158, 11, 0.1);
}

/* CTA Button */
.rnb-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rnb-btn-cta {
    background: linear-gradient(135deg, var(--rnb-accent), var(--rnb-accent-light));
    color: var(--rnb-dark) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sora', sans-serif;
}

.rnb-btn-cta:hover {
    box-shadow: 0 6px 30px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

/* Burger */
.rnb-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10002;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.rnb-burger span {
    width: 24px;
    height: 2px;
    background: var(--rnb-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.rnb-burger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.rnb-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.rnb-burger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Overlay Mobil */
.rnb-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10003;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.rnb-mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.rnb-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.rnb-mobile-overlay.is-open .rnb-mobile-nav {
    transform: translateY(0);
}

.rnb-mobile-nav a {
    text-decoration: none;
    color: var(--rnb-text-muted);
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: 'Sora', sans-serif;
}

.rnb-mobile-nav a:hover {
    color: var(--rnb-accent);
}

.rnb-mobile-contact {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid var(--rnb-border);
    padding-top: 30px;
    width: 80%;
}

.rnb-mobile-contact span {
    display: block;
    font-size: 0.8rem;
    color: var(--rnb-text-dim);
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */
/* ==========================================================================
   FOOTER NUCLEAR RESET — consistent pe TOATE paginile
   Astra injectează max-width, float, padding pe containere WooCommerce.
   Aceste stiluri suprascriu TOTUL.
   ========================================================================== */

/* Ascunde footer-ul default Astra */
.site-footer,
.ast-footer-overlay,
.ast-small-footer,
footer.entry-footer,
.site-below-footer-wrap,
.ast-footer-copyright,
#ast-footer-markup {
    display: none !important;
}

/* box-sizing pe tot footer-ul */
.rnb-footer,
.rnb-footer *,
.rnb-footer *::before,
.rnb-footer *::after {
    box-sizing: border-box !important;
}

/* Resetare orice container Astra/WC care ar putea wrapa footer-ul */
.rnb-footer,
.woocommerce-page .rnb-footer,
.woocommerce .rnb-footer,
body.single-product .rnb-footer,
body.woocommerce-cart .rnb-footer,
body.woocommerce-checkout .rnb-footer,
body.woocommerce-account .rnb-footer,
body.archive .rnb-footer {
    position: relative !important;
    padding: 80px 0 48px !important;
    background-color: #070B14 !important;
    text-align: center !important;
    overflow: hidden !important;
    border-top: 1px solid var(--rnb-border) !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    float: none !important;
    display: block !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    z-index: 10 !important;
    clear: both !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.rnb-footer__glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(245, 158, 11, 0.05));
    pointer-events: none;
}

.rnb-footer__inner,
.woocommerce-page .rnb-footer__inner,
body.single-product .rnb-footer__inner {
    position: relative !important;
    z-index: 10 !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    width: 100% !important;
    display: block !important;
    float: none !important;
}

/* Badges */
.rnb-footer__badges {
    margin-bottom: 64px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 32px !important;
}

.rnb-badge-link {
    display: block;
    transition: transform 0.3s ease;
}

.rnb-badge-link:hover {
    transform: scale(1.05);
}

.rnb-badge-img {
    display: block;
    width: auto;
    height: 56px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    padding: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rnb-badge-img.is-broken { display: none; }
.rnb-badge-img.is-broken + .rnb-badge-fallback,
.rnb-badge-fallback { display: none; }
.rnb-badge-img.is-broken + .rnb-badge-fallback {
    display: inline-block;
    color: var(--rnb-text-muted);
    font-size: 0.75rem;
    padding: 8px 16px;
    border: 1px solid var(--rnb-border);
    border-radius: 6px;
}

/* Grid 3 coloane */
.rnb-footer__grid {
    padding-top: 40px !important;
    border-top: 1px solid var(--rnb-border) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 48px !important;
    align-items: start !important;
    width: 100% !important;
}

@media (min-width: 1200px) {
    .rnb-footer__grid {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 32px !important;
    }
}

.rnb-footer__col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}

/* PNRR col */
.rnb-footer__pnrr-title {
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.4;
    max-width: 280px;
    margin: 0 auto 12px;
}

.rnb-footer__pnrr-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 700;
    color: var(--rnb-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rnb-footer__pnrr-links a {
    color: var(--rnb-text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.rnb-footer__pnrr-links a:hover {
    color: var(--rnb-accent);
}

.rnb-footer__sep {
    color: rgba(255, 255, 255, 0.1);
}

.rnb-footer__pnrr-disclaimer {
    font-size: 9px;
    color: var(--rnb-text-dim);
    line-height: 1.4;
    max-width: 280px;
    margin: 8px auto 0;
}

/* Brand col */
.rnb-footer__brand {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.rnb-footer__brand span {
    color: var(--rnb-accent);
}

.rnb-footer__copyright {
    padding-top: 16px;
    border-top: 1px solid var(--rnb-border);
    width: 100%;
    max-width: 280px;
}

.rnb-footer__copy-main {
    font-size: 10px;
    color: var(--rnb-text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 4px;
}

.rnb-footer__copy-caen {
    font-size: 9px;
    color: var(--rnb-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

/* Info col */
.rnb-footer__contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: var(--rnb-text-muted);
    margin-bottom: 24px;
}

.rnb-footer__address {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.rnb-footer__icon {
    width: 16px;
    height: 16px;
    color: var(--rnb-accent);
    flex-shrink: 0;
}

.rnb-footer__legal-ids {
    font-size: 12px;
    color: var(--rnb-text-dim);
    display: flex;
    gap: 12px;
    justify-content: center;
}

.rnb-footer__nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 10px;
    color: var(--rnb-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 16px;
}

.rnb-footer__nav-links a {
    color: var(--rnb-text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.rnb-footer__nav-links a:hover {
    color: #fff;
}

.rnb-footer__socials {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-top: 8px;
}

.rnb-footer__social-link {
    color: var(--rnb-accent);
    text-decoration: none;
    transition: color 0.3s;
}

.rnb-footer__social-link:hover {
    color: #fff;
}

/* Footer order pe mobil */
@media (max-width: 1199px) {
    .rnb-footer__col--pnrr { order: 3; }
    .rnb-footer__col--brand { order: 1; }
    .rnb-footer__col--info { order: 2; }
}

/* ==========================================================================
   15. FORM INPUTS — DARK OVERRIDE (Regula 15)
   ========================================================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="date"],
select,
textarea,
.input-text,
.woocommerce input[type="text"],
.woocommerce select,
.woocommerce textarea,
.select2-container--default .select2-selection--single {
    background: rgba(10, 14, 23, 0.8) !important;
    background-color: rgba(10, 14, 23, 0.8) !important;
    color: var(--rnb-text) !important;
    border: 1px solid rgba(245, 158, 11, 0.12) !important;
    border-radius: 12px !important;
    -webkit-appearance: none !important;
    color-scheme: dark !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
    background: rgba(10, 14, 23, 0.95) !important;
    border-color: var(--rnb-accent) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15) !important;
}

::placeholder {
    color: var(--rnb-text-dim) !important;
}

select option,
.woocommerce select option {
    background: #0F1923 !important;
    color: var(--rnb-text) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--rnb-text) !important;
}

.select2-dropdown {
    background: #0F1923 !important;
    border-color: var(--rnb-border) !important;
}

.select2-results__option {
    color: var(--rnb-text) !important;
}

.select2-results__option--highlighted {
    background: rgba(245, 158, 11, 0.15) !important;
}

/* ==========================================================================
   16. RESPONSIVE HEADER
   ========================================================================== */
@media (max-width: 921px) {
    .rnb-nav {
        display: none !important;
    }

    .rnb-btn-cta {
        display: none !important;
    }

    .rnb-burger {
        display: flex !important;
    }

    .rnb-custom-header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .rnb-header-container {
        padding: 0 16px;
    }

    /* Ascunde cursorul custom pe mobil/touch */
    .cursor-dot,
    .cursor-circle {
        display: none !important;
    }
}
