/*
Theme Name: PX.theme
Theme URI: https://px.plus/
Author: PX
Author URI: https://px.plus/
Description: PX.theme - Minimalistyczny motyw zoptymalizowany pod Elementor.
Version: 2.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: px-theme
Tags: minimal, elementor-ready, woocommerce
*/

/* Minimalny reset CSS */
html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
}

/* Użyteczne klasy szerokości dla pełnych sekcji (Elementor/Gutenberg alignfull/alignwide) */
.alignfull {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.alignwide {
    max-width: min(1200px, 90vw);
    margin-left: auto;
    margin-right: auto;
}

/* Obrazki elastyczne */
img {
    height: auto;
    max-width: 100%;
    border-style: none;
}

/* Wymuszenie dziedziczenia koloru tekstu przez linki, z wyłączeniem przycisków Elementora */
a:not(.elementor-button),
a:visited:not(.elementor-button),
a:hover:not(.elementor-button),
a:active:not(.elementor-button) {
    color: inherit !important;
    text-decoration: inherit !important;
    transition: opacity 0.3s ease;
}

/* Subtelny efekt po najechaniu tylko dla zwykłych linków */
a:not(.elementor-button):hover {
    opacity: 0.8 !important;
}