/*
Theme Name: Local Garage Theme
Theme URI: https://example.com
Author: Antigravity AI
Author URI: https://example.com
Description: A custom theme built to work with Local Garage Elementor Addon. Matches the React design.
Version: 1.0.0
Text Domain: local-garage-theme
*/

/* Reset & Basic Styles managed by Tailwind, but ensuring full height */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    /* IMPORTANT: overflow must be visible or 'auto' for position:sticky to work */
    /* overflow-x: hidden causes issues with sticky */
    overflow-x: clip;
    /* clip is like hidden but doesn't create a containing block for sticky */
    overflow-y: visible !important;
    /* ensure vertical scrolling doesn't break sticky */
}

/* Ensure Elementor sections stretch properly */
.elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 1280px;
    /* Matching max-w-7xl */
}