:root {
    --primary-color: #8e0d00;
    --secondary-color: #3498db;
    --tertiary-color: #b21a0c;
    --accent-color: #e74c3c;
    --light-gray: #ecf0f1;
    --dark-gray: #34495e;
    --text-color: #2c3e50;
}

/* Lokal offer list styles */
.lokal-offer-list {
    padding: 0;
    margin: 0 -10px;
}

.lokal-offer-list .list-group-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 12px;
    margin: 10px 0;
    background: #fff;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    margin-bottom: 30px;
}


.lokal-offer-list .list-group-item .img-fluid {
    width: 110px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.lokal-offer-list h5 {
    font-size: 18px;
    margin: 0 0 6px 0;
    color: var(--primary-color);
    line-height: 1.2;
}

.lokal-offer-list .small {
    font-size: 12px;
    color: #6c757d;
}

.lokal-offer-list p {
    margin: 6px 0 0 0;
    color: var(--text-color);
}

.lokal-offer-list .badge {
    font-size: 13px;
}


.lokal-offer-list p.text-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price {
    background-color: var(--primary-color);
    color: white;
    padding:5px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .lokal-offer-list .list-group-item {
        gap: 10px;
        padding: 10px;
    }

    .lokal-offer-list .list-group-item .img-fluid {
        width: 90px;
        height: 66px;
    }

    .lokal-offer-list h5 { font-size: 16px; }
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-style: normal;
   
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    
}

@keyframes slideInCenter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    /* -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; */
}

/* RESET CSS */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-size: 1px;
    height: 100%;
    width: 100%;
}


img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover{
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

p {
    margin: 0;
}

body {
    font-family: 'Poppins-Regular';
    line-height: 1.6;
    color: var(--text-color);
}

.container-main {
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 20px;
}

.h-text {
    font-size: 30rem;
    color: var(--primary-color);
}

/* Navigation Links */
/* .navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
} */

.navbar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hamburger Menu Styles */
.navbar-toggler {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px ;
    z-index: 1002;
}

.navbar.hide {
    transform: translateY(-101%);
}

.navbar.show {
    transform: translateY(0);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation */
.navbar-toggler.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* DESKTOP NAVBAR */
.navbar-desktop {
    display: block;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
     transition: transform 0.3s ease-in-out;
     font-size: 16rem;
}

.nav-links-desktop {
    display: flex;

    align-items: center;
}

.navbar-desktop .nav-item {
    position: relative;
}

.navbar-desktop .nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-desktop .nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(52, 152, 219, 0.1);
}

.navbar-desktop .nav-link.has-dropdown .fa-chevron-down {
    font-size: 11.2rem;
    transition: transform 0.3s ease;
}

.navbar-desktop .nav-item:hover .nav-link.has-dropdown .fa-chevron-down {
    transform: rotate(180deg);
}

.navbar-desktop .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0,0,0,0.1);
}

.navbar-desktop .nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-desktop .submenu-item {
    display: block;
    padding: 12.8px 19.2px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-desktop .submenu-item:last-child {
    border-bottom: none;
}

.navbar-desktop .submenu-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
    padding-left: 24px;
}

/* MOBILE NAVBAR */
.navbar-mobile {
    display: none;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
     transition: transform 0.3s ease-in-out;
}

.navbar-mobile .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-toggler {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar-toggler.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links-mobile {
    display: flex;
    position: fixed;
    top: 83px;
    left: 0;
    height: calc(100vh - 111px);
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 1001;
    overflow-y: auto;
    padding: 16px 0;
}

.nav-links-mobile.active {
    opacity: 1;
    visibility: visible;
}

.navbar-mobile .nav-item {
    width: 90%;
    max-width: 300px;
    margin: 3.2px 0;
}

.navbar-mobile .nav-link {
    font-size: 20.8px;
    padding: 11.2px 19.2px;
    color: #fff;
    text-align: left;
    border-radius: 8px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.nav-links-mobile.active .nav-link {
    animation: slideInCenter 0.5s ease-out forwards;
}

.navbar-mobile .nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(52, 152, 219, 0.2);
}

.navbar-mobile .nav-text {
    flex-grow: 1;
    text-align: left;
}

.navbar-mobile .dropdown-arrow {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    min-width: 40px;
    min-height: 40px;
}

.navbar-mobile .dropdown-arrow:hover {
    background-color: rgba(52, 152, 219, 0.2);
}

.navbar-mobile .dropdown-arrow .fa-chevron-down {
    font-size: 12.8rem;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.navbar-mobile .nav-link.has-dropdown.active .dropdown-arrow .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.navbar-mobile .submenu {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 5px;
    margin-top: 8px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out;
    position: static;
    opacity: 1;
    visibility: visible;
}

.navbar-mobile .submenu.active {
    max-height: 500px;
}

.navbar-mobile .submenu-item {
    padding: 9.6px 24px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    font-size: 16rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-mobile .submenu-item:hover {
    color: var(--primary-color);
    background-color: rgba(52, 152, 219, 0.1);
    padding-left: 16px;
}

.navbar-brand .logo {
    height: 50px;
    width: auto;
}

.navbar-desktop,
.navbar-mobile {
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.35s cubic-bezier(.4,0,.2,1);
    will-change: transform, opacity;
}
.navbar-desktop.hidden,
.navbar-mobile.hidden {
    transform: translateY(-101%);
    opacity: 0;
    pointer-events: none;
}
.navbar-desktop,
.navbar-mobile {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* RESPONSIVE DISPLAY */
@media (max-width: 1200px) {
    .navbar-desktop {
        display: none;
    }
    
    .navbar-mobile {
        display: block;
    }
}

@media (min-width: 1200px) {
    .navbar-desktop {
        display: block;
    }
    
    .navbar-mobile {
        display: none;
    }
}






/* Swiper Nav  */

.swiper-controls-custom {
   display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: white;
    border-radius: 8px;
    margin: 0 10px;
}

.swiper-pagination-progressbar,
.swiper-pagination-custom.swiper-pagination-progressbar {
    width: 100%;

    height: 8px !important;
    background: #eee;
    border-radius: 4px;
    /* margin: 0 12px !important; */
    display: block !important;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.swiper-pagination-progressbar-fill,
.swiper-pagination-custom .swiper-pagination-progressbar-fill {
    background: #8e0d00 !important;
    border-radius: 4px !important;
    height: 100% !important;
    width: 100% !important; 
    min-width: 10px !important;
    display: block !important;
    transform-origin: left center !important;
    transition: transform 0.3s, width 0.3s !important;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
     flex: 0 0 36px;
    width: 36px;
    height: 36px;
    background: var(--primary-color, #8e0d00);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    user-select: none;
}

.swiper-button-prev-custom i,
.swiper-button-next-custom i {
    font-size: 16rem;
       width: 100%;
    text-align: center;
    pointer-events: none;
    margin-top: 2px;
}
.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: #fff;
    color: var(--primary-color, #8e0d00);
    border: 1px solid var(--primary-color, #8e0d00);
}

.swiper-button-prev-custom i:hover,
.swiper-button-next-custom i:hover {
    color: var(--primary-color, #8e0d00);
}



/* Hero Swiper Styles  */
.hero {
    height: 80vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    display: flex;
    height: 100%;
}

.swiper-slide {
    position: relative;
    background: #000;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    /* position: absolute; */
    top: 0;
    left: 0;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    z-index: 10;
}



.swiper-pagination {
    position: absolute !important;
    bottom: 20px !important;
    left: 0 !important;
    width: 100% !important;
    text-align: center !important;
    z-index: 100 !important;
}

.swiper-pagination-bullet {
    display: inline-block !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
    margin: 0 5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: white !important;
    transform: scale(1.2) !important;
}

.swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8) !important;
}

/* SCROLLBAR SWIPER */
.swiper-scrollbar {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    z-index: 50 !important;
}

.swiper-scrollbar-drag {
    background: var(--primary-color) !important;
    height: 100% !important;
}

/* Responsive paginacja */
@media (max-width: 768px) {
    .swiper-pagination {
        bottom: 10px !important;
    }
    
    .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
        margin: 0 3px !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
  
    

    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
        margin-top: -20px !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14rem !important;
    }
}


/* Swiper Preloader */
.swiper-preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f6f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 500;
    transition: opacity 0.3s ease;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #eee;
    border-radius: 50%;
    border-top-color: #8e0d00;
    animation: preloader-spin 1s linear infinite;
}



@keyframes preloader-spin {
    to {
        transform: rotate(360deg);
    }
}



/* Responsive preloader */
@media (max-width: 768px) {
    .preloader-spinner {
        width: 50px;
        height: 50px;
    }
}

.footer {
    background: #222;
    color: #fff;
    padding: 40px 0 10px 0;
    font-size: 14rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto 40px auto;
    padding: 0 40px;
    gap: 40px;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #444;
    background-color: white;
    color: #222;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: flex-end;
    font-size: 35rem;
}

.footer-social :hover  {
    color: #3b5998 ;
    transition: color 0.3s ease;
}

.footer-address {
    font-size: 14rem;
    color: white;
}

.footer-address-title {
    font-weight: bold;
    font-size: 20rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.footer-address-line {
    color: white;
    font-size: 12rem;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.footer-address-box {
    background-color: var(--primary-color);
    width: 20px;
    height: 20px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11rem;
    border-radius: 3px;
    margin-right: 10px;
}

.footer-address-box i {
margin-top: 2px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 70%;
    
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s, text-decoration 0.3s; 
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}


/* Hero Content */
.hero-content {
    position: absolute;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7) ;
    border-radius: 10px;
    color: white;
    top: 50%;   
    left: 30%;
    transform: translate(-50%, -50%);
    padding: 20px;

}

.hero-text {
    max-width: 600px;
    padding: 16px;
}
.hero-title {
    font-size: 50rem;
    margin-bottom: 8px;
}
.hero-subtitle {
    font-size: 20rem;
    margin-bottom: 16px;
}

.button-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    background-color: var(--primary-color);
    color: white;


  
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 16rem;
    line-height: 1.5;
    border-radius: 5.6px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.button-hero:hover {
   color: rgb(231, 231, 231);

}

.hero-button-text {
    margin-left: 10px;
}


/* =======================WELCOME========================== */

.welcome {
    padding: 40px 0;
    
}

.welcome-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.welcome-location {
    font-size: 16rem;
    color: var(--primary-color);
    font-family: 'Poppins-Bold';
}

.welcome-text {
    width: 50%;
    padding: 20px;
}

.welcome-title {
    font-size: 36rem;
    margin-bottom: 10px;
}

.welcome-description {
    font-size: 18rem;
    color: #666;
}

.welcome-image {
   width: 40%;
    padding: 20px;
}

.welcome-image img {
    aspect-ratio: 100/120;
    object-fit: cover;
}


/* =======================INFO========================== */

.info {
    background-color: #f6f3f3;
    padding: 40px 0;
}

.info-content {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: stretch;
    gap: 20px;
}

.info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
     width: 300px;
     background-color:rgb(251, 251, 251);
       transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 10px 10px rgba(0,0,0,0.05);
}


.info-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(52, 73, 94, 0.15);
    z-index: 2;
}

.info-title i {
    transform: translateX(0);
    transition: color 0.3s ease, transform 0.3s cubic-bezier(.4,0,.2,1);
}


.info-box:hover .info-title,
.info-box:focus-within .info-title {
    color: var(--primary-color);
    transition: color 0.3s;
}

.info-box:hover .info-title i,
.info-box:focus-within .info-title i {
    color: var(--primary-color);
    transform: translateX(5px);
    transition: color 0.3s ease, transform 0.3s cubic-bezier(.4,0,.2,1);
}


.info-image {
    object-fit: cover;
    
}

.info-text {
    padding: 20px;
    
    width: 100%;
}

.info-title {
    font-size: 18rem;
    margin-bottom: 10px;
}

.info-description {
    font-size: 14rem;
    color: #666;
}

/* =======================NEWS========================== */


.news-section {
    background: #fafbfc;
    padding: 60px 0;
    overflow: hidden;
}
.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
   
}
.news-header {
    text-align: center;
    margin-bottom: 40px;
}
.news-title {
     font-size: 32rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.news-lead {
    color: #6c757d;
    font-size: 18rem
}
.news-slider {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.news-slide {
    display: flex;
    align-items: stretch;
    height: auto;
    background-color: transparent;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 24px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.news-card-body {
  display: grid;
     grid-template-rows: auto auto auto auto;
    gap: 12px;
    margin-top: 20px;
    
}
.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    width: 100%;
}
.news-date {
    color: #888;
    font-size: 16rem;
}
.news-badge {
    background: var(--primary-color, #007bff);
    color: #fff;
    border-radius: 8px;
    padding: 2px 10px;
    font-size: 14rem
}
.news-card-title {
    font-size: 20rem; 
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    min-height: 2.4em;    
    max-height: 2.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.news-card-text {
    color: #6c757d;
    font-size: 16rem;
    margin-bottom: 0.5em;
    line-height: 1.4;
    min-height: 4.2em;    
    max-height: 4.2em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.news-author {
    color: #888;
    font-size: 16rem;
}
.news-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 28px;
    border-radius: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 16rem;
}
.news-btn:hover {
    background: var(--tertiary-color);
    color: #fff;
}
.news-btn i{
 margin-right: 10px;
}
.news-footer {
    text-align: center;
    margin-top: 25px;
}

/* Paginacja (kropki) */
.news-swiper-pagination.swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    gap: 8px;
    position: static !important;
}
.news-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.4;
    border-radius: 50%;
    transition: opacity 0.2s, background 0.2s;
    margin: 0 4px;
}
.news-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* .news-card-img {
    position: relative;
} */

/* Strzałki */
.news-swiper-button-prev,
.news-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border: 3px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}
.news-swiper-button-prev {
    left: 8px;
}
.news-swiper-button-next {
    right: 8px;
}
.news-swiper-button-prev::after,
.news-swiper-button-next::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.news-swiper-button-prev::after {
    content: "\f053"; /* FontAwesome strzałka w lewo */
}
.news-swiper-button-next::after {
    content: "\f054"; /* FontAwesome strzałka w prawo */
}
.news-swiper-button-prev:hover,
.news-swiper-button-next:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Przycisk autoplay */
.swiper-autoplay-toggle {
    position: absolute;
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    background: var(--primary-color);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 24rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
    color: #fff;
}
.swiper-autoplay-toggle:hover {
    background: #fff;
    color: var(--primary-color);
}

.news-swiper-pagination .swiper-pagination-bullet {
 background-color: #bcbbbb !important;
}
.news-swiper-pagination .swiper-pagination-bullet-active {
   background-color:var(--primary-color) !important;
}

.news-card-img {
    width: 100%;
    height: 250px;         
    overflow: hidden;
    border-radius: 8px;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    display: block;
}


.news-card-link {
    width: 100%;
}







    /* =======================NEWS SUBPAGE========================== */
.news-single {
    max-width: 1000px;
    margin: 120px auto 40px auto;
    padding: 32px 20px 20px 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(52,73,94,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.7s cubic-bezier(.4,0,.2,1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: none;}
}

.news-single__container {
 width: 100%;
}

.news-single__image {
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
    margin-bottom: 28px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.news-single__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 14px;
}

.news-single__meta {
    width: 100%;
    display: flex;
    gap: 32px;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 18px;
    color: #888;
    font-size: 16rem;
    letter-spacing: 0.01em;
}
.news-single__meta svg {
    vertical-align: middle;
    margin-right: 6px;
}
.news-single__date {
    display: flex;
    align-items: center;
    gap: 4px;
}
.news-single__author {
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-single__title,
.news-single h1 {
    font-size: 32rem;
    font-weight: 700;
    margin: 0 0 24px 0;
    color: var(--primary-color, #007bff);
    text-align: left;
    width: 100%;
    line-height: 1.13;
    letter-spacing: -0.01em;
}

.news-single__content {
    width: 100%;
    color: #222;
    font-size: 14rem;
    line-height: 1.7;
    word-break: break-word;
    background: #f8f9fc;
    border-radius: 10px;
    padding: 24px 20px;
    box-sizing: border-box;
    box-shadow: 0 1.5px 4px rgba(40,60,90,0.03);
    margin-top: 24px;
 
}

.news-single__content p small,
.news-single p small {
    color: #888;
    font-size: 16rem;
}


.modal {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

.modal-content {
    border-radius: 8px;
}

.modal-header {
        padding: 16rem;
}

.modal-body {
    padding: 16rem;
}

.modal-title {
font-size: 20rem;
}

.btn-close {
    font-size: 20rem;
}

.gal-text {
    font-size: 16rem;
}

.card-header {
    padding: 16px;
}


.news-gallery {
    border-radius: 8px;
    border: none;
    margin-top: 30px;
}

.card-header1 {
    padding: 16rem;
    margin-bottom: 0;
    background-color: #f8f9fc;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border: 1px solid #e3e6f0;
 
}

.card-body {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 1px solid #e3e6f0;
    border-top: none;
}


@media (max-width: 800px) {
    .news-single {
        padding: 16px 4vw 24px 4vw;
        margin: 110px 20px 40px 20px;
    }
    .news-single__title,
    .news-single h1 {
        font-size: 20rem;
    }
    .news-single__content {
        font-size: 15rem;
        padding: 14px 6px;
    }
}


.news_sub {
    margin-top: 20px;
  
}

.news_con {
    padding: 10px;
}

.news-single__content ul,
.news-single__content ol {
    list-style: initial;
    margin-left: 2em;
    margin-bottom: 1em;
    padding-left: 1.5em;
}
.news-single__content li {
    margin-bottom: 0.5em;
}


    /* ====================PRELOADER========================== */
    
    .img-preloader-spinner {
    border: 4px solid #eee;
    border-top: 4px solid #8e0d00;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: img-spin 1s linear infinite;
}
@keyframes img-spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}
.img-preloader-spinner-wrap {
    opacity: 1;
    transition: opacity 0.5s;
    width: 100%;
    height: 100%;
}

.img-preloader-box {
  height: 100%;
}


    /* ====================ANNOUNCEMENTS========================== */

    .latest-announcements {
    max-width: 1000px;
    margin: 20rem auto;
     margin-top: 50px;
}
.ann-title {
    color: var(--primary-color);
    margin-bottom: 15rem;
    font-size: 25rem;
}


.ann-link {
    display: block;
    background: #f4f6fb;
    border-radius: 8rem;
    margin-bottom: 12rem;
    padding: 11rem 13rem;
    box-shadow: 0 2rem 8rem rgba(60,60,100,0.06);
    color: #222;
    text-decoration: none;
    transition: box-shadow 0.2s, background 0.2s;
}
.ann-link:hover {
    box-shadow: 0 4rem 18rem rgba(60,60,100,0.13);
    background: #e8eaf6;
}
.ann-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ann-title-main {
    font-weight: bold;
    font-size: 10.8rem;
}
.ann-date {
    font-size: 9.3rem;
    color: #607d8b;
}
.ann-desc {
    margin-top: 5rem;
    color: #444;
    font-size: 9.9rem;
}
.ann-empty {
    background: #fffbe7;
    border: 1rem solid #ffe082;
    color: #bfa600;
    border-radius: 7rem;
    padding: 10rem;
    text-align: center;
}

.ann-date-btn {
    background: #e3e7fa;
    color: #1a237e;
    border: none;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 10rem;
    cursor: pointer;
    margin-left: 10rem;
    transition: background 0.2s, color 0.2s;
}
.ann-date-btn:hover {
    background: #c5cae9;
    color: #0d133d;
}

.ann-date-text {
    line-height: 1.5;
}

.ann-date-text i {
    margin-left: 5px;
}


  /* ====================SIDEBAR NAV========================== */




.sidebar-nav .nav {
    flex-direction: column;
    gap: 10px;
    font-size: 14rem !important;
}

.sidebar-nav .nav-link {
    color: var(--primary-color);
    font-weight: bold;
    padding: 10px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.sidebar-nav .nav-link:hover {
    background: #e2e6ea;
    color: var(--primary-color);
}

.sidebar-nav .nav-link.active {
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
}



.sidebar-nav .nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12rem;
}

/* .sidebar-nav .nav-link {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    padding: 12rem 18rem;
    border-radius: 4rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    font-size: 16rem;
} */

.sidebar-nav .nav-link:hover {
    background: #e2e6ea;
    color: var(--primary-color);
}

.sidebar-nav .nav-link.active {
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
}

/* Submenu styles */
.sidebar-nav .submenu {
    list-style: none;
    margin: 8rem 0 0 18rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.sidebar-nav .submenu-item {
    display: block;
    font-size: 15rem;
    color: var(--primary-color);
    padding: 8rem 16rem;
    border-radius: 4rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    margin-left: 0;
}

.sidebar-nav .submenu-item:hover,
.sidebar-nav .submenu-item.active {
    background: #e2e6ea;
    color: var(--primary-color);
    font-weight: 600;
}

.submenu-item2 {
    margin-left: 20px !important;
    font-size: 14rem !important;
}

/* Main content */
.subpage-content {
    flex: 1;
    background: #fff;
    padding: 32rem 24rem;
    border-radius: 8rem;
    border: 1rem solid #e3e6f0;
    min-height: 400rem;
    box-sizing: border-box;
}

/* Responsive */
@media (max-width: 900px) {
    .subpage-container {
        flex-direction: column;
        gap: 20rem;
        padding: 0 10rem;
    }
    .subpage-sidebar,
    .subpage-content {
        width: 100%;
        min-height: unset;
        padding: 20rem 10rem;
    }
    .sidebar-nav .submenu {
        margin-left: 10rem;
    }
}




 /* ====================SUBPAGE ========================== */

/* Subpage layout without Bootstrap */
.subpage-container {
    display: flex;
    max-width: 1600px;
    margin: 40px auto;
    gap: 32px;
    margin-top: 50px;
    position: relative;
    font-size: 14rem;
  padding-left: 20px;
    padding-right: 20px;
}

.subpage-sidebar {
    width: 300px;
    background: #f8f9fc;
    padding: 32px 16px;
    border-radius: 8px;
    border: 1px solid #e3e6f0;
    height: fit-content;
    box-sizing: border-box;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    overflow: auto;
    z-index: 2;
}


.subpage-title {
    font-size: 30rem;
    margin-bottom: 16rem;
    font-weight: 700;
    color: var(--primary-color);
}




.subpage-content {
    flex: 1;
    background: #fff;
    padding: 32px 24px;
    border-radius: 8px;
    border: 1px solid #e3e6f0;
    min-height: 400px;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .subpage-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }
    .subpage-sidebar,
    .subpage-content {
        width: 100%;
        min-height: unset;
        padding: 20px 10px;
    }
}


/* =================MODAL IMG====================== */

/* Minimalna wysokość modala */
.modal-content.bg-dark,
.modal-body.p-0 {
    height: 80vh;
}

/* Swiper na całą wysokość modala */
.modal-swiper {
    height: 80vh;
    position: relative;
   
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

/* Wrapper z paddingiem od góry na nawigację */
.modal-swiper .swiper-wrapper {
       flex: 1 1 auto;
  
    padding-top: 20px;
    height: 100%;
    min-height: 0;
}

.modal-swiper .swiper-slide {
   display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100% !important;
    min-height: 0;
    background: none;
}

.custom-slide-center {
    position: relative;
    overflow: hidden;
}

/* Obrazek nie większy niż modal */
.custom-slide-center img {
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    cursor: pointer;
    padding: 10px;
    opacity: 1;
}
.custom-slide-center img.zoomed {
    cursor: grab;
    z-index: 10;
}

/* Przycisk zamykania */
.close-modal-btn {
    background: none;
    border: none;
    font-size: 20rem;
    color: #8e0d00;
    cursor: pointer;
    line-height: 1;
    padding: 0 8px;
    transition: color 0.2s;
    order: 1;
}
.close-modal-btn:hover {
    color: #b71c1c;
}



/* =================Wazne Telefony====================== */

.content_phones {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
}

.important_phones_box {
    background: #f6f3f3;
    padding: 20px;
    border: 1px solid #e3e6f0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;

}

.important_phones_title {
    
    font-size: 16rem;
    color: var(--primary-color);
    font-weight: 700;
}
.important-phones {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

/* =================Regulaminy====================== */

.regulations_content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.regulations_box {
    background: #f6f3f3;
    padding: 20px;
    border: 1px solid #e3e6f0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.regulations_box:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 8px 24px rgba(52, 73, 94, 0.15);
    z-index: 2;
}

.regulations_box i {
    font-size: 40rem;
    margin-bottom: 10px;
    transition: color 0.3s, transform 0.3s cubic-bezier(.4,0,.2,1);
}

.regulations_box:hover i {
    color: var(--primary-color);
    transform: rotate(-8deg) scale(1.15);
}

.regulations_title {
    font-size: 12rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    transition: color 0.3s;
}

.regulations_box:hover .regulations_title {
    color: var(--tertiary-color);
}


.regulations_date {
    font-size: 10rem;
    color: #666;
    margin-top: 6px;
    text-align: center;
}

.regulations_attachment i {
    font-size: 10rem;
}

.regulations_attachment span {
    font-size: 12rem;
    padding-right: 3px;
}

.attachment_content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;   
}

.attachment_attachment:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

/* =================Remonty====================== */
  .renovation-category-list {
            list-style: none;
            padding: 0;
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .renovation-category-list li {
            margin-bottom: 10px;
        }
        .renovation-category-link {
            display: block;
            padding: 10px 16px;
            background: #f8f8f8;
            border-radius: 6px;
            color: #8b1a16;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.2s;
        }
        .renovation-category-link:hover {
            background: #ffe5e2;
        }

        
        .search-form {
            display: flex;
            align-items: center;
        }
        .renovation-work-list {
            list-style: none;
            padding: 0;
            margin-bottom: 24px;
        }
        .renovation-work-list li {
            background: #f3f3f3;
            border-radius: 6px;
            margin-bottom: 10px;
            padding: 10px 16px;
        }


         .renovation-work-list {
            list-style: none;
            padding: 0;
        }
        .renovation-work-list li {
            background: #f3f3f3;
            border-radius: 6px;
            margin-bottom: 12px;
            padding: 12px 18px;
        }
        .work-row {
            display: flex;
            flex-direction: column;
        }
        .work-label {
            color: #8b1a16;
            font-weight: 600;
            margin-right: 6px;
            font-size: 20rem;
        }

        .work-label2 {
            color: #8b1a16;
            font-weight: 600;
            margin-right: 6px;
            font-size: 16rem;
        }
        .work-value {
            color: #8b1a16;
            font-weight: 600;
            margin-right: 6px;
            font-size: 20rem;
        }

          .work-value2 {
            color: #333;
            font-weight: 400;
        }

        .work-details {
            display: flex;
            flex-direction: row;
            align-items: center;
        }

        
        .form-control2 {
            height: 36px;
            font-size: 16rem;
            border-radius: 8px;
        }

        .file-form {
            display: flex;
            flex-direction: column;
            margin-bottom: 10px;
        }

        .btn-primary2 {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
            font-size: 16rem;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.2s, border-color 0.2s;
            margin-top: 20px;
        }

        .btn-primary2:hover {
            background-color: var(--tertiary-color);
            border-color: var(--tertiary-color);

        }


/* 
        ========================Kontakt========================== */


        .contact-content {
         display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .contact-column {
              display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            padding: 0 20px;
            gap: 20px;
            align-items: flex-start;
        }

        .contact-box {
            border: 1px solid #e3e6f0;
            border-radius: 8px;
            padding: 20px;
            width: 500px;
        }

        .contact-title {
            font-size: 18rem;
            margin-bottom: 10px;
            color: var(--primary-color);   
            font-weight: bold;     
        }  
        
        .contact-details {
            font-size: 14rem;
            color: #444;
            margin-bottom: 6px;
        }

        .contact-mail {
            text-decoration: none;
        }

        .contact-mail:hover {
            text-decoration: underline;
            color: var(--primary-color);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

/* ===================== COOKIES PAGE ===================== */
.cookies-page-container {

    padding-top: 30px;
}
.cookies-content {
    max-width: 1300px;
    margin: 40px auto 60px auto;
    padding: 32px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.cookies-title {
    font-size: 28rem;
    margin-bottom: 1.2em;
    text-align: center;
    color: var(--primary-color);
    font-family: 'Poppins-Bold', sans-serif;
}
.cookies-lead {
    font-size: 16rem;
    color: var(--text-color);
    margin-bottom: 1.7em;
    text-align: center;
}
.cookies-section-title {
    font-size: 16rem;
    margin-top: 2em;
    color: var(--priomart-color);
    font-family: 'Poppins-Bold', sans-serif;
}
.cookies-list {
    margin: 1.2em 0 1.7em 0;
    padding-left: 1.2em;
    color: var(--text-color);
    font-size: 16rem;
}
.cookies-list li {
    margin-bottom: 0.7em;
}
.cookies-text {
    font-size: 16rem;
    color: var(--text-color);
    margin-bottom: 1.2em;
}


/* ===================== COOKIE BANNER ===================== */
#cookie-banner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 30, 30, 0.55);
    z-index: 99999;
    backdrop-filter: blur(2px);
}

.cookie-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    border-radius: 18px;
    padding: 36px 32px 28px 32px;
    max-width: 1300px;
   
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.cookie-banner-text {
    font-size: 17rem;
    text-align: center;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: var(--primary-color);
}

.cookie-banner-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

#cookie-accept-all {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 13px 32px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    font-size: 19rem;
    order: 1;
    transition: background 0.2s, transform 0.2s;
}

#cookie-accept-all:hover {
    background: var(--tertiary-color);
    transform: translateY(-2px);
}

#cookie-accept-necessary {
    background: transparent;
    color: var(--tertiary-color);
    border: 1.5px solid var(--primary-color);
    padding: 11px 22px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    order: 2;
    font-size: 16rem;
    transition: color 0.2s, border 0.2s, background 0.2s;
}

#cookie-accept-necessary:hover {
    color: var(--tertiary-color);
    border-color: var(--tertiary-color);
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .cookie-banner-content {
        width: 85vw;
        padding: 28px 24px 20px 24px;
        gap: 18px;
    }

    .cookie-banner-text {
        font-size: 15rem;
    }

    #cookie-accept-all {
        font-size: 17rem;
        padding: 12px 28px;
    }

    #cookie-accept-necessary {
        font-size: 15rem;
        padding: 10px 20px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .cookie-banner-content {
        width: 92vw;
        padding: 24px 18px 18px 18px;
        gap: 16px;
        border-radius: 12px;
    }

    .cookie-banner-text {
        font-size: 14rem;
        line-height: 1.5;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    #cookie-accept-all {
        font-size: 16rem;
        padding: 12px 24px;
        width: 100%;
    }

    #cookie-accept-necessary {
        font-size: 14rem;
        padding: 10px 18px;
        width: 100%;
    }
}

/* Responsive - Very Small Mobile */
@media (max-width: 360px) {
    .cookie-banner-content {
        padding: 20px 14px 16px 14px;
    }

    .cookie-banner-text {
        font-size: 13rem;
    }

    #cookie-accept-all {
        font-size: 15rem;
        padding: 10px 20px;
    }

    #cookie-accept-necessary {
        font-size: 13rem;
        padding: 9px 16px;
    }
}

/* Lokal offer info block styling */
.news-single__info {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 18px;
    border-radius: 10px;
    margin-top: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.news-single__info ul {
    display: block;
}
.news-single__info ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 14rem;
    color: var(--text-color);
}
.news-single__info ul li strong {
    display: inline-block;
    width: 140px;
    color: var(--primary-color);
    font-weight: 600;
}
.news-single__info .price-value {
    background: var(--light-gray);
    padding: 4px 8px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .news-single__info ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .news-single__info ul li strong {
        width: auto;
    }
}








/* ===================== 404 PAGE ===================== */
.error404-container {

    padding-top: 30px;
}
.error404-content {
    max-width: 1300px;
    margin: 60px auto 60px auto;
    padding: 40px 24px 36px 24px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.error404-title {
    font-size: 30rem;
    color: var(--primary-color);
    font-family: 'Poppins-Bold', sans-serif;
    margin-bottom: 0.5em;
}
.error404-lead {
    font-size: 16rem;
    color: var(--text-color);
    margin-bottom: 2em;
}
.error404-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(48,86,155,0.08);
    transition: background 0.2s;
}
.error404-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}





 /* =================== SCROLL TO TOP BUTTON ===================== */ 
  /* Scroll to top button */
        #scrollToTop {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            position: fixed;
            right: 20px;
            bottom: 40px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: #fff;
            border: none;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            cursor: pointer;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateY(8px);
            transition: opacity .28s ease, transform .28s ease, visibility .28s;
        }
        #scrollToTop.show {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }
        #scrollToTop i { font-size: 16px; }
        @media (max-width: 576px) {
            #scrollToTop { right: 12px; bottom: 60px; }
        }