/*
Theme Name: RCVIX Industrial
Theme URI: https://rcvix.com
Author: RCVIX Team
Author URI: https://rcvix.com
Description: A professional WordPress theme for industrial equipment manufacturers, featuring remote control mowers and industrial machinery.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rcvix-industrial
Tags: industrial, manufacturing, machinery, equipment, responsive, custom-menu, featured-images, translation-ready
*/

/* ===========================================================================
   CLS safeguard: reserve space for images that lack explicit width/height
   attributes so the layout does not shift while images load.
   =========================================================================== */
img { height: auto; }
img:not([width]):not([height]) {
    aspect-ratio: 3 / 2;
}

/* ==========================================================================
   Accessibility: "Skip to main content" link — hidden until focused (WCAG 2.4.1)
   ========================================================================== */
.skip-link {
    position: absolute;
    left: 50%;
    top: -100px;
    transform: translateX(-50%);
    z-index: 99999;
    padding: 12px 20px;
    background: var(--rcvix-accent, #34d95a);
    color: #fff;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
    top: 0;
    outline: 3px solid #fff;
    outline-offset: 2px;
}
