body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html{
    overflow-x: hidden;
}

button {
    padding: 10px 20px;
    background-color: #cc945e;
    color: white;
    border: none;
    border-radius: 5px;
}




/* Navbar */

.custom-navbar {
    background: transparent;
    transition: background-color 0.3s ease;
    color: #cc945e;
}

.custom-navbar.scrolled {
    background-color: white !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.custom-navbar .nav-link {
    color: #cc945e !important;
    font-weight: 600;
    font-size: 1.05rem;
    margin-right: 1.5rem;
    text-transform: none;
}

.custom-navbar .nav-link:hover {
    border-bottom: 3px solid #c87b38;
    padding-bottom: 4px;
}

.custom-navbar img {
    border-radius: 5px;
    object-fit: cover;
    width: 42px;
    height: 28px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-left: 0.5rem;
    cursor: pointer;
}

.custom-navbar svg {
    object-fit: cover;
    width: auto;
    height: 60px;
    cursor: pointer;
}

.custom-navbar .bi-cart {
    object-fit: cover;
    width: auto;
    height: 32px;
    cursor: pointer;
}

/* Navbar dropdown list */

.navbar .dropdown-menu {
    margin-top: 15px;
    border-radius: 5px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar .dropdown-item{
    color: #cd8342 !important;
}

.navbar .dropdown-item:active {
    background-color: transparent !important;
    color: inherit !important;
}


/* Cookies */

.cookie-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100%;
    max-width: 400px;
    background: #fff;
    z-index: 1050;
    border-radius: 12px;
    display: none;
    animation: fadeIn 0.4s ease;
}

.cookie-modal button {
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid transparent;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cookie-modal a {
    color: #cc945e !important;
}

#rejectCookies {
    background-color: #cc945e;
    color: white;
    border: 2px solid #cc945e;
}

#acceptCookies {
    background-color: #cc945e;
    color: white;
    border: 2px solid #cc945e;
}

#acceptCookies:hover,
#rejectCookies:hover{
    background-color: #b3763f;
    border-color: #b3763f;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#cookieBanner {
    z-index: 9999 !important; /* nad wszystkim */
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}





/* Footer */

.bg-footer {
    background-color: #cc945e;
}

.bg-footer .nav-link {
    color: #fff;
    background: transparent;
    border: none;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
}

.bg-footer .nav-link.active {
    font-weight: bold;
    color: black;
    border-bottom: 2px solid #fff;
}

.footer-scrollable-list {
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    max-height: 150px;
    overflow-y: auto;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 5px;
}
.footer-scrollable-list::-webkit-scrollbar {
    width: 8px;
}
.footer-scrollable-list::-webkit-scrollbar-thumb {
    background-color: rgba(204, 148, 94, 0.5);
    border-radius: 5px;
}

.tab-content p,
.tab-content a {
    color: #cc945e !important;
    text-decoration: none !important;
    margin-bottom: 0;
}

.tab-content p:hover {
    background-color: rgba(204, 148, 94, 0.3);
    border-radius: 5px;
}


/* Footer social media icons */

.footer-section .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0 !important;
}

.footer-section .social-icon:hover {
    transform: scale(1.1);
}
