html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* --- PRZYCISKI --- */

/* Stan DOMYŚLNY - to sprawi, że przycisk będzie widoczny od razu */
.btn-orange {
    background-color: #fd7e14 !important;
    border-color: #fd7e14 !important;
    color: white !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}

    /* Stan PO NAJECHANIU */
    .btn-orange:hover {
        background-color: #e8590c !important;
        border-color: #e8590c !important;
        color: white !important;
        transform: scale(1.03);
        box-shadow: 0 4px 12px rgba(253, 126, 20, 0.4) !important;
    }

/* Przycisk szczegółów */
.btn-outline-secondary {
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Ikona koszyka w menu */
.cart-pill:hover i {
    color: #fd7e14;
}

/* --- KARTY PRODUKTÓW --- */

.card {
    transition: transform 0.2s;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #fff; /* Upewnij się, że karta ma tło */
}

    .card:hover {
        transform: scale(1.02);
    }

.card-img-top {
    height: 250px;
    object-fit: cover;
}
