/* ==================== ZĂKLADNĂ‰ NASTAVENIA ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #ed1c24;
    --primary-blue: #02AEEF;
    --dark-blue: #005f8f;
    --white: #FFF;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #f8f8f8;
}

body {
    font-family: 'Urbanist', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow-x: hidden;
}

/* ==================== ANIMĂCIE ==================== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-slide-in {
    animation: slideIn 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* ==================== HEADER ==================== */
.header {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: visible;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    height: 70px;
    max-width: 250px; /* Limit logo width */
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* WordPress menu structure */
.nav .nav-menu,
.nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav .nav-menu li,
.nav ul li {
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Submenu / Dropdown */
.nav .sub-menu,
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.nav .menu-item-has-children:hover > .sub-menu,
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav .sub-menu a,
.dropdown-menu a {
    display: block;
    padding: 0 25px;
    color: var(--dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav .sub-menu a:after,
.dropdown-menu a:after {
    display: none;
}

.nav .sub-menu a:hover,
.dropdown-menu a:hover {
    /* background: var(--light-gray); */
    color: var(--primary-red);
    padding-left: 30px;
}

.nav a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    padding: 10px 7px;
}

.nav a:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav a:hover:after {
    width: 100%;
}

/* Pre linky s podmenu - vypnúť podčiarknutie, použiť chevron šípku */
.nav .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
}

.nav .menu-item-has-children > a:after {
    content: '';
    position: static;
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    background: transparent;
    transform: rotate(45deg);
    margin-left: 6px;
    margin-bottom: 2px;
    transition: transform 0.3s ease, margin-bottom 0.3s ease;
    flex-shrink: 0;
    vertical-align: middle;
}

.nav .menu-item-has-children:hover > a:after {
    transform: rotate(-135deg);
    margin-bottom: -4px;
}

.nav .menu-item-has-children.active > a:after {
    transform: rotate(-135deg);
    margin-bottom: -4px;
}

.nav a:hover {
    color: var(--primary-blue);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==================== SLIDER ==================== */
.slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 900px;
}

.slide-content h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -2px;
}

.slide-content p {
    font-size: 24px;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    color: white;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.left { left: 40px; }
.slider-arrow.right { right: 40px; }

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.section {
    /* padding: 100px 0; */
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

/* ==================== PROMO SEKCIA ==================== */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.promo-card {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.promo-card:nth-child(1) {
    border-top: 5px solid var(--primary-red);
}

.promo-card:nth-child(2) {
    border-top: 5px solid var(--primary-blue);
}

.promo-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
}

.promo-content {
    padding: 40px;
}

.promo-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.promo-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
}

.promo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.promo-link:hover {
    gap: 15px;
}

/* ==================== VYHODNA PONUKA SEKCIA ==================== */
.vyhodna-ponuka-section {
    padding: var(--spacing-xl) 0;
}

.vyhodna-ponuka-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vyhodna-ponuka-card {
    border-top: 5px solid var(--primary-red);
}

.vyhodna-ponuka-date {
    display: inline-block;
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.vyhodna-ponuka-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
    font-size: 18px;
}

@media (max-width: 768px) {
    .vyhodna-ponuka-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }
}

/* ==================== NEWS SEKCIA ==================== */
.news-section {
    padding-top: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.news-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-content {
    padding: 30px;
}

.news-date {
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.3;
}

.news-content p {
    color: var(--gray);
    line-height: 1.7;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
}

/* ==================== PARTNERI ==================== */
.partners-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
    padding: 100px 0;
    position: relative;
}

.partners-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 80px;
}

.partners-slider {
    display: flex;
    gap: 60px;
    align-items: center;
    transition: transform 0.5s ease;
}

.partner-item {
    width: 210px;
    height: 140px;
    min-width: 210px;
    aspect-ratio: 3 / 2;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    flex-shrink: 0;
    overflow: hidden;
}

.partner-item:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.partner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.partner-arrow:hover {
    background: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.partner-arrow:hover svg {
    color: white;
}

.partner-arrow svg {
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.partner-arrow.left {
    left: 10px;
}

.partner-arrow.right {
    right: 10px;
}

/* ==================== KONTAKTY ==================== */
.contact-section {
    background: var(--primary-red);
    color: white;
    padding: 100px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -1px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 35px;
    transition: all 0.3s ease;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.contact-icon svg {
    color: var(--primary-red);
}

.contact-details h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    opacity: 0.9;
}

.contact-details p {
    color: white;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}

.map-container {
    background: rgba(255,255,255,0.15);
    border-radius: 24px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* KlikateÄľnĂ© odkazy v kontaktoch */
.contact-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

/* ==================== FOOTER ==================== */
.footer {
    background: #0a0a0a;
    color: rgba(255,255,255,0.6);
    padding: 40px 0;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}

/* ==================== RESPONZĂŤVNY DIZAJN ==================== */
@media (max-width: 1024px) {
    .nav {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }

    /* WordPress nav-menu ul - stĺpec na celú šírku */
    .nav .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    /* Každá li položka na celú šírku, centrovaná */
    .nav .nav-menu > li,
    .nav-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Všetky priame linky v nav na mobile - centrované */
    .nav > a,
    .nav .nav-menu > li > a,
    .nav-item > a {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px 40px;
        border-bottom: 1px solid var(--light-gray);
        width: 100%;
        text-align: center;
    }

    /* Mobile submenu — skryté predvolene, zobrazí sa cez .active */
    .nav .sub-menu,
    .nav .menu-item-has-children:hover > .sub-menu,
    .dropdown-menu,
    .nav-item:hover .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        padding: 0;
        display: none !important;
        width: 100%;
    }

    .nav .menu-item-has-children.active > .sub-menu,
    .nav-item.active > .dropdown-menu {
        display: block !important;
    }

    .nav .sub-menu a,
    .dropdown-menu a {
        padding: 12px 40px;
        font-size: 13px;
        text-align: center;
        color: var(--primary-red);
        display: block;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        text-transform: uppercase;
    }

    .nav .sub-menu a:hover,
    .dropdown-menu a:hover {
        padding: 12px 40px;
        color: var(--primary-red);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .promo-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide-content h1 {
        font-size: 48px;
    }

    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 50px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .slide-content h1 {
        font-size: 36px;
    }

    .slide-content p {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .slider {
        height: 400px;
    }

    .header-content {
        padding: 0 20px;
    }

    .container {
        padding:20px;
    }

    .section {
        padding: 60px 0;
    }

    .promo-content {
        padding: 30px;
    }

    .promo-content h3 {
        font-size: 24px;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
    }

    .slider-arrow.left {
        left: 10px;
    }

    .slider-arrow.right {
        right: 10px;
    }

    .partners-slider {
        gap: 30px;
    }

    .partners-slider-container {
        padding: 0 60px;
    }
    .partners-section {
        padding:50px 0;
    }

    .partner-item {
        min-width: 100px;
        width: 100px;
        height: 100px;
        font-size: 40px;
    }

    .partner-arrow {
        width: 30px;
        height: 30px;
    }

    .contact-info h2 {
        font-size: 36px;
        margin-bottom: 35px;
    }

    .map-container {
        height: 300px;
        font-size: 60px;
    }
}

/* ==================== RECEPTY CBA SEKCIA ==================== */
.recepty-cba-section {
    background: var(--primary-red);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* DekoratĂ­vny gradient overlay */
.recepty-cba-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}

.recepty-cba-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* TextovĂˇ ÄŤasĹĄ */
.recepty-text {
    color: white;
}

.recepty-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.recepty-description {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    opacity: 0.95;
}

.recepty-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    background: rgba(255,255,255,0.15);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.recepty-link:hover {
    background: white;
    color: var(--primary-red);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Video wrapper */
.recepty-video-wrapper {
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    background: rgba(0,0,0,0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* CBA Logo */
.recepty-logo {
    text-align: center;
    position: relative;
    z-index: 1;
}

.recepty-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1); /* ZmenĂ­ logo na biele */
    opacity: 0.9;
    transition: all 0.3s ease;
}

.recepty-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ResponzĂ­vny dizajn */
@media (max-width: 1024px) {
    .recepty-cba-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .recepty-title {
        font-size: 42px;
    }

    .recepty-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .recepty-cba-section {
        padding: 60px 0;
    }

    .recepty-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .recepty-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .recepty-link {
        padding: 12px 28px;
        font-size: 14px;
    }

    .video-container {
        border-radius: 15px;
    }

    .recepty-logo img {
        max-width: 180px;
    }
}

.recepty-logo-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
    letter-spacing: 0.5px;
    opacity: 0.85;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .recepty-logo-text {
        font-size: 12px;
        margin-top: 10px;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: #0a0a0a;
    color: rgba(255,255,255,0.6);
    padding: 40px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    animation: fadeInUp 0.6s ease;
}

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

.footer-left p,
.footer-right p {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.footer-middle {
    text-align: center;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.footer-link:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

/* ResponzĂ­vny dizajn */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 0 20px;
    }
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    padding: 10px;
}

.partner-item:hover img {
    transform: scale(1.1);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* MAPA PREDAJNĂŤ - CSS Ĺ TĂťLY */
/* Pridajte tento kĂłd do styles.css pred sekciu RECEPTY CBA */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.archive-map-container {
    padding-top: 80px !important;
    padding-bottom: 0 !important;
}

.archive-map-container .map-wrapper {
    /* max-height: 500px; */
    overflow: hidden;
}
.archive-map-container .map-wrapper img{
    /* height:420px; */
}

@media (max-width: 768px) {
    .archive-map-container {
        padding-top: 20px;
        padding-bottom: 10px;
    }
}

/* ==================== STORES MAP SECTION ==================== */
.stores-map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.stores-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(2, 174, 239, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.stores-map-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.stores-map-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 17px;
    line-height: 1.7;
    font-family: 'DM Sans', sans-serif;
}

.stores-map-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Mapa wrapper */
.map-wrapper {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 60px rgba(0,0,0,0.08);
    overflow: visible;
}

.slovakia-map {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
    filter: grayscale(20%);
    position: relative;
    z-index: 1;
}

/* Body predajnĂ­ */
.store-pin {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.store-pin:hover {
    z-index: 20;
    transform: translate(-50%, -50%) scale(1.2);
}

.pin-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-red);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(237, 28, 36, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(237, 28, 36, 0);
    }
}

.store-pin:hover .pin-dot {
    background: var(--primary-blue);
    box-shadow: 0 6px 20px rgba(2, 174, 239, 0.6);
    animation: none;
}

.pin-label {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 15;
    line-height: 1.2;
}

.store-pin:hover .pin-label {
    top: 14px;
    z-index: 25;
    max-width: 120px;
    padding: 3px 8px;
    font-size: 11px;
}

@media (max-width: 768px) {
    .pin-label {
        display: none !important;
    }
}

/* Tooltip */
.store-tooltip {
    position: absolute;
    background: var(--dark);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
    min-width: 200px;
}

.store-tooltip.active {
    opacity: 1;
    visibility: visible;
}

.tooltip-city {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.tooltip-address {
    display: block;
    font-size: 13px;
    opacity: 0.8;
    margin-top: 3px;
}

.tooltip-text {
    margin: 0;
    font-size: 13px;
    opacity: 0.8;
}

/* Info panel */
.stores-map-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-stats {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Region info box */
.region-info {
    background: linear-gradient(135deg, rgba(2, 174, 239, 0.05) 0%, rgba(237, 28, 36, 0.05) 100%);
    border-radius: 16px;
    padding: 25px;
    border-left: 4px solid var(--primary-blue);
}

.region-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.region-info p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

/* CTA Button */
.stores-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-red), #c41820);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(237, 28, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stores-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(237, 28, 36, 0.4);
    gap: 18px;
}

.stores-cta-button svg {
    transition: transform 0.3s ease;
}

.stores-cta-button:hover svg {
    transform: translateX(5px);
}

.stores-help-text {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    margin: 0;
    padding: 15px;
    background: rgba(2, 174, 239, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

/* ResponzĂ­vny dizajn */
@media (max-width: 1024px) {
    .stores-map-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stores-map-section {
        padding: 60px 0;
    }

    .map-wrapper {
        padding: 0px;
    }

    .pin-dot {
        width: 12px;
        height: 12px;
        border-width: 3px;
    }

    .pin-label {
        font-size: 11px;
        padding: 6px 12px;
    }

    .info-stats {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stores-cta-button {
        width: 100%;
        padding: 16px 30px;
        font-size: 15px;
    }

    .stores-map-subtitle {
        font-size: 15px;
    }
}

/* AnimĂˇcie pri naÄŤĂ­tanĂ­ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stores-map-header {
    animation: fadeInUp 0.6s ease;
}

.map-wrapper {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.stores-map-info {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.store-pin {
    animation: fadeInUp 0.6s ease backwards;
}

.store-pin:nth-child(1) { animation-delay: 0.5s; }
.store-pin:nth-child(2) { animation-delay: 0.6s; }
.store-pin:nth-child(3) { animation-delay: 0.7s; }
.store-pin:nth-child(4) { animation-delay: 0.8s; }
.store-pin:nth-child(5) { animation-delay: 0.9s; }
.store-pin:nth-child(6) { animation-delay: 1s; }
.store-pin:nth-child(7) { animation-delay: 1.1s; }
.store-pin:nth-child(8) { animation-delay: 1.2s; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* KONIEC MAPA PREDAJNĂŤ CSS */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* KARIĂ‰RA SEKCIA - CSS Ĺ TĂťLY */
/* Pridajte tento kĂłd do styles.css pred sekciu FOOTER */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* ==================== CAREER SECTION ==================== */
.career-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41820 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* DekoratĂ­vne prvky v pozadĂ­ */
.career-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.career-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.career-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* TextovĂˇ ÄŤasĹĄ */
.career-text {
    color: white;
}

.career-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
    color: white;
    line-height: 1.1;
}

.career-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    opacity: 0.95;
    color: white;
}

.career-description {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
    font-family: 'DM Sans', sans-serif;
}

/* Benefity */
.career-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 35px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    opacity: 0.95;
}

.benefit-item svg {
    flex-shrink: 0;
    stroke-width: 2.5;
}

/* CTA tlaÄŤidlo */
.career-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary-red);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.career-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    gap: 18px;
}

.career-cta-button svg {
    transition: transform 0.3s ease;
}

.career-cta-button:hover svg {
    transform: translateX(5px);
}

/* ObrĂˇzkovĂˇ ÄŤasĹĄ */
.career-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.career-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: transform 0.6s ease;
}

.image-wrapper:hover .career-img {
    transform: scale(1.05);
}

/* Badge (voliteÄľnĂ˝ dekoratĂ­vny prvok) */
.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.badge-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ResponzĂ­vny dizajn */
@media (max-width: 1024px) {
    .career-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .career-title {
        font-size: 44px;
    }

    .career-subtitle {
        font-size: 20px;
    }

    .career-image {
        order: -1; /* ObrĂˇzok hore na tablete */
    }
}

@media (max-width: 768px) {
    .career-section {
        padding: 60px 0;
    }

    .career-title {
        font-size: 36px;
    }

    .career-subtitle {
        font-size: 18px;
    }

    .career-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .career-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .career-cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 35px;
        font-size: 16px;
    }

    .image-badge {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }

    .badge-number {
        font-size: 28px;
    }

    .badge-text {
        font-size: 12px;
    }
}

/* AnimĂˇcie pri naÄŤĂ­tanĂ­ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.career-text {
    animation: fadeInRight 0.8s ease;
}

.career-image {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* KONIEC KARIĂ‰RA SEKCIA CSS */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* VYHÄ˝ADĂVANIE V MENU - CSS Ĺ TĂťLY */
/* Pridajte tento kĂłd do styles.css do sekcie HEADER/NAVIGATION */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* ==================== SEARCH IN NAVIGATION ==================== */

/* Kontajner pre vyhÄľadĂˇvanie */
.nav-search {
    position: relative;
    display: flex;
    align-items: center;
}

/* TlaÄŤidlo na otvorenie vyhÄľadĂˇvania */
.search-toggle {
    background: none;
    border: none;
    color: var(--primary-red);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.search-toggle:hover {
    background: rgba(237, 28, 36, 0.1);
    /* transform: scale(1.1); */
}

.search-toggle svg {
    transition: transform 0.3s ease;
}

.search-toggle:hover svg {
    transform: rotate(90deg);
}

/* Search box kontajner */
.search-box {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 15px;
    min-width: 350px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.search-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Search box - ĹˇĂ­pka hore */
.search-box::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

/* Input pole */
.search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

/* Skryť natívne X tlačidlo browsera pri type="search" */
.search-input::-webkit-search-decoration,
.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-results-button,
.search-input::-webkit-search-results-decoration {
    -webkit-appearance: none;
    display: none;
}

.search-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(2, 174, 239, 0.1);
}

.search-input::placeholder {
    color: var(--gray);
    opacity: 0.6;
}

/* TlaĂidlo hľadať */
.nav-search .search-submit {
    position: absolute;
    top: 23px;
    right: 48px;
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-search .search-submit:hover {
    color: var(--dark-blue);
    background: rgba(2, 174, 239, 0.1);
}

/* TlaÄŤidlo zavrieĹĄ */
.search-close {
    position: absolute;
    top: 23px;
    right: 25px;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.search-close:hover {
    color: var(--primary-red);
    background: rgba(237, 28, 36, 0.1);
}

/* VĂ˝sledky vyhÄľadĂˇvania */
.nav-search .search-results {
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.nav-search .search-results.active {
    display: block;
}

.nav-search .search-result-item {
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 5px;
    border-left: 3px solid transparent;
}

.nav-search .search-result-item:hover {
    background: var(--light-gray);
    border-left-color: var(--primary-blue);
}

.nav-search .search-result-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.nav-search .search-result-excerpt {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

.nav-search .search-highlight {
    background: rgba(2, 174, 239, 0.2);
    color: var(--primary-blue);
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 3px;
}

/* Ĺ˝iadne vĂ˝sledky */
.nav-search .search-no-results {
    padding: 20px;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

/* Info text */
.nav-search .search-info {
    padding: 8px 12px;
    font-size: 12px;
    color: var(--gray);
    border-top: 1px solid var(--light-gray);
    margin-top: 10px;
    text-align: center;
}

/* Scrollbar pre vĂ˝sledky */
.nav-search .search-results::-webkit-scrollbar {
    width: 6px;
}

.nav-search .search-results::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.nav-search .search-results::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 10px;
}

.nav-search .search-results::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* ==================== AUTOSUGGEST DROPDOWN ==================== */

.nav-search-suggestions {
    display: none;
    margin-top: 8px;
    border-top: 1px solid var(--light-gray);
    max-height: 320px;
    overflow-y: auto;
}

.nav-search-suggestion-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s ease;
    cursor: pointer;
}

.nav-search-suggestion-item:hover {
    background: rgba(2, 174, 239, 0.07);
}

.nav-search-suggestion-type {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--primary-blue);
}

.nav-search-suggestion-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.3;
}

.nav-search-suggestion-all {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-red);
    text-decoration: none;
    border-top: 1px solid var(--light-gray);
    margin-top: 4px;
    text-align: center;
    transition: background 0.15s ease;
    border-radius: 0 0 8px 8px;
}

.nav-search-suggestion-all:hover {
    background: rgba(237, 28, 36, 0.05);
}

/* ==================== SOCIÁLNE SIETE V HEADERI ==================== */
.nav-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: var(--primary-red);
    background: white;
    border: 1px solid var(--light-gray);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: all 0.2s ease;
    text-decoration: none;
    padding:0;
}

.nav-social a:hover {
    color: var(--primary-red);
    background: rgba(237, 28, 36, 0.1);
    /* border-color: var(--primary-blue); */
    box-shadow: 0 3px 10px rgba(2, 174, 239, 0.2);
    /* transform: translateY(-1px); */
    text-decoration: none;
}
.nav-social a:after{
    height: 0;
}

/* ==================== MOBILE RESPONSIVE ==================== */

@media (max-width: 1024px) {
    /* V mobile menu vyhÄľadĂˇvanie presunieme do mobile nav */
    .nav-search {
        display: none; /* Skryjeme v desktop menu */
    }

    /* PridĂˇme do mobile menu */
    .mobile-nav .nav-search {
        display: block;
        width: 100%;
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 15px;
    }

    .mobile-nav .search-toggle {
        width: 100%;
        color: white;
        padding: 12px 20px;
        justify-content: flex-start;
        gap: 12px;
    }

    .mobile-nav .search-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-nav .search-box {
        position: static;
        width: 100%;
        margin-top: 10px;
        min-width: auto;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    .mobile-nav .search-box::before {
        display: none;
    }

    .mobile-nav .search-input {
        background: white;
        color: var(--dark);
    }

    .mobile-nav .search-results {
        background: white;
        border-radius: 8px;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .search-box {
        min-width: 300px;
    }
    .nav-social{
        border-left:none;
        margin-left:0;
        padding-left:0;
        padding-top:15px;
    }
}

/* ==================== ZVĂťRAZNENIE VĂťSLEDKOV NA STRĂNKE ==================== */

/* ZvĂ˝raznenie nĂˇjdenĂ©ho textu na strĂˇnke */
.page-search-highlight {
    background: rgba(255, 235, 59, 0.6);
    padding: 2px 4px;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.page-search-highlight.active {
    background: rgba(2, 174, 239, 0.4);
    outline: 2px solid var(--primary-blue);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* KONIEC VYHÄ˝ADĂVANIE CSS */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* NEWS "NAÄŚĂŤTAĹ¤ VIAC" - CSS Ĺ TĂťLY */
/* Pridajte tento kĂłd do styles.css do sekcie NEWS */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* SkrytĂ© novinky */
.news-card-hidden {
    display: none;
    opacity: 0;
}

/* Zobrazenie skrytĂ˝ch noviniek */
.news-card-hidden.show {
    display: block;
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animĂˇcia pre kaĹľdĂş kartu */
.news-card-hidden.show:nth-child(7) { animation-delay: 0.1s; }
.news-card-hidden.show:nth-child(8) { animation-delay: 0.2s; }
.news-card-hidden.show:nth-child(9) { animation-delay: 0.3s; }
.news-card-hidden.show:nth-child(10) { animation-delay: 0.4s; }
.news-card-hidden.show:nth-child(11) { animation-delay: 0.5s; }
.news-card-hidden.show:nth-child(12) { animation-delay: 0.6s; }

/* Kontajner pre tlaÄŤidlo */
.news-load-more {
    text-align: center;
    margin-top: 50px;
}

/* TlaÄŤidlo "NaÄŤĂ­taĹĄ viac" */
.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-red), #c41820);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Urbanist', sans-serif;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(237, 28, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(237, 28, 36, 0.4);
}

.load-more-btn svg {
    transition: transform 0.3s ease;
}

.load-more-btn:hover svg {
    transform: translateY(3px);
}

/* Skrytie tlaÄŤidla po naÄŤĂ­tanĂ­ */
.load-more-btn.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Text v tlaÄŤidle */
.load-more-text {
    transition: opacity 0.3s ease;
}

/* AnimĂˇcia fade in up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ResponzĂ­vny dizajn */
@media (max-width: 768px) {
    .news-load-more {
        margin-top: 40px;
    }

    .load-more-btn {
        width: 100%;
        max-width: 350px;
        padding: 14px 30px;
        font-size: 15px;
        justify-content: center;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* KONIEC NEWS "NAÄŚĂŤTAĹ¤ VIAC" CSS */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* HERO CAROUSEL - CENTROVANĂ‰ ZAROVNANIE */
/* NahraÄŹte predoĹˇlĂ© .slide-content ĹˇtĂ˝ly tĂ˝mto kĂłdom */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Overlay pre lepĹˇiu ÄŤitateÄľnosĹĄ textu */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

/* Slide content - CENTROVANĂť */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    max-width: 900px;
    width: 90%;
    z-index: 2;
    text-align: center; /* â† STRED */
}

.slide-content h1 {
    font-size: 62px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-family: 'DM Sans', sans-serif;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Label nad nadpisom - CENTROVANĂť */
.slide-label {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease 0.3s backwards;
}

/* CTA Button - CENTROVANĂť */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-red), #c41820);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(237, 28, 36, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    margin-top: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(237, 28, 36, 0.5);
    gap: 18px;
    border-color: white;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* AlternatĂ­vny ĹˇtĂ˝l CTA - biely button */
.cta-button.white {
    background: white;
    color: var(--primary-red);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.3);
}

.cta-button.white:hover {
    background: var(--light-gray);
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.4);
}

/* AnimĂˇcie */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* ResponzĂ­vny dizajn */
@media (max-width: 1024px) {
    .slide-content {
        max-width: 800px;
        width: 85%;
    }

    .slide-content h1 {
        font-size: 52px;
    }

    .slide-content p {
        font-size: 18px;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .slide-content {
        width: 90%;
        max-width: none;
        padding: 0 20px;
    }

    .slide-content h1 {
        font-size: 40px;
    }

    .slide-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .slide-label {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 15px;
    }

    .cta-button {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        padding: 16px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 15px;
        line-height: 1.5;
    }

    .slide-content p br {
        display: none; /* OdstrĂˇni zlomy riadkov na mobile */
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* KONIEC HERO CAROUSEL CSS - CENTROVANĂ‰ */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* NEWSLETTER SEKCIA - CSS Ĺ TĂťLY */
/* Pridajte tento kĂłd do styles.css pred sekciu FOOTER */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0295c8 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* DekoratĂ­vne pozadie */
.newsletter-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: white;
}

/* Ikonka */
.newsletter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: floatAnimation 3s ease-in-out infinite;
}

.newsletter-icon svg {
    color: white;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Nadpis */
.newsletter-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: white;
}

/* Podtext */
.newsletter-subtitle {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
    font-family: 'DM Sans', sans-serif;
}

/* CTA Button */
.newsletter-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary-blue);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.newsletter-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    gap: 18px;
    background: rgba(255, 255, 255, 0.95);
}

.newsletter-cta-button svg {
    transition: transform 0.3s ease;
}

.newsletter-cta-button:hover svg {
    transform: translateX(5px);
}

/* PoznĂˇmka pod buttonom */
.newsletter-note {
    font-size: 14px;
    opacity: 0.85;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

/* Zlom riadku len na desktop */
.desktop-only {
    display: inline;
}

/* ResponzĂ­vny dizajn */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .newsletter-icon svg {
        width: 45px;
        height: 45px;
    }

    .newsletter-title {
        font-size: 36px;
    }

    .newsletter-subtitle {
        font-size: 17px;
        margin-bottom: 35px;
    }

    .desktop-only {
        display: none; /* OdstrĂˇni zlom riadku na mobile */
    }

    .newsletter-cta-button {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        padding: 16px 40px;
        font-size: 16px;
    }

    .newsletter-note {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .newsletter-title {
        font-size: 30px;
    }

    .newsletter-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .newsletter-cta-button {
        padding: 14px 35px;
        font-size: 15px;
    }
}

/* AnimĂˇcie pri naÄŤĂ­tanĂ­ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsletter-icon {
    animation: fadeInUp 0.6s ease, floatAnimation 3s ease-in-out infinite;
}

.newsletter-title {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.newsletter-subtitle {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.newsletter-cta-button {
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.newsletter-note {
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* KONIEC NEWSLETTER SEKCIA CSS */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* SINGLE POST - Detail clanku */
.single-post {
    background: var(--light-bg);
}

.single-article {
    max-width: 1024px;
    margin: 40px auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 60px rgba(0,0,0,0.08);
}

.single-header {
    padding: 50px 50px 30px;
}

.single-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.single-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-red);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
    word-break: break-word;
}

.single-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray);
    font-size: 15px;
}

.single-date {
    color: var(--primary-blue);
    font-weight: 600;
}

.single-thumbnail {
    width: 100%;
    overflow: hidden;
}

.single-featured-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.single-content {
    padding: 50px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark);
}

.single-content h2,
.single-content h3,
.single-content h4 {
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.single-content h2 {
    font-size: 28px;
}

.single-content h3 {
    font-size: 22px;
}

.single-content p {
    margin-bottom: 20px;
}

.single-content img {
    border-radius: 16px;
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.single-content blockquote {
    border-left: 4px solid var(--primary-red);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
    color: var(--gray);
    font-size: 18px;
}

.single-content ul,
.single-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.single-content li {
    margin-bottom: 10px;
}

.single-content a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.single-content a:hover {
    border-bottom-color: var(--primary-red);
}

.page-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    font-weight: 600;
}

/* PDF Viewer */
.pdf-section {
    padding: 40px 50px;
    border-bottom: 1px solid #eee;
}

.pdf-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

.pdf-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.pdf-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: white;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    line-height: 1;
    padding: 0;
}

.pdf-btn:hover:not(:disabled) {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.pdf-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pdf-counter {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    min-width: 100px;
    text-align: center;
}

.pdf-zoom-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 1px solid #ddd;
    padding-left: 12px;
    margin-left: 4px;
}

.pdf-controls-top {
    display: none;
}

@media (max-width: 768px) {
    .pdf-zoom-wrap {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }

    .pdf-controls-top {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .pdf-zoom-wrap-top {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .pdf-zoom-wrap-bottom {
        display: none;
    }
}

.pdf-zoom-level {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    min-width: 48px;
    text-align: center;
}

.pdf-viewer {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 16px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.04);
    touch-action: pan-y;
}

.pdf-track {
    display: flex;
    transition: transform 0.4s ease;
}

.pdf-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    box-sizing: border-box;
    overflow: auto;
    cursor: grab;
    touch-action: pan-x pan-y;
}

.pdf-slide.panning {
    cursor: grabbing;
}

.pdf-page {
    max-width: 100%;
    height: auto;
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
    border-radius: 8px;
    background: white;
    transition: transform 0.2s ease;
}

.pdf-loading {
    padding: 60px;
    text-align: center;
    color: var(--gray);
    font-size: 16px;
}

.pdf-error {
    padding: 40px;
    text-align: center;
    color: var(--primary-red);
}

.pdf-error a {
    color: var(--primary-red);
    text-decoration: underline;
    font-weight: 600;
}

.pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary-red);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pdf-download:hover {
    background: #c41820;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(237,28,36,0.25);
}

@media (max-width: 768px) {
    /* .single-post {
        padding: 40px 0;
    } */

    .single-header {
        padding: 30px 25px 20px;
    }

    .single-title {
        font-size: 28px;
    }

    .single-content {
        padding: 30px 25px;
        font-size: 16px;
    }

    .single-featured-image {
        max-height: 300px;
    }

    .pdf-section {
        padding: 5px;
        text-align: center;
    }

    .pdf-title {
        font-size: 20px;
    }

    .pdf-slide {
        padding: 0;
    }

    .pdf-btn {
        width: 38px;
        height: 38px;
    }
}

/* ==================== BEŽNÉ STRÁNKY (PAGE) ==================== */
.page-content {
    padding: 60px 0 100px;
    background: var(--light-bg);
}

.page-content .container {
    max-width: 1024px;
}

.page-content article {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 60px rgba(0,0,0,0.08);
}

.page-content .entry-header {
    padding: 50px 50px 30px;
}

.page-content .entry-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin: 0;
}

.page-content .post-thumbnail {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
    margin: 0 50px 0;
    border-radius: 16px;
}

.page-content .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-content .entry-content {
    padding: 40px 50px 50px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--dark);
}

.page-content .entry-content h2,
.page-content .entry-content h3,
.page-content .entry-content h4,
.page-content .entry-content h5,
.page-content .entry-content h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin: 1.8em 0 0.7em;
    line-height: 1.3;
}

.page-content .entry-content h2 {
    font-size: 32px;
    font-weight: 700;
}

.page-content .entry-content h3 {
    font-size: 26px;
    font-weight: 700;
}

.page-content .entry-content h4 {
    font-size: 22px;
    font-weight: 700;
}

.page-content .entry-content h5 {
    font-size: 18px;
    font-weight: 700;
}

.page-content .entry-content h6 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-content .entry-content p {
    margin-bottom: 1.4em;
}

.page-content .entry-content a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 0 0 rgba(237, 28, 36, 0.15);
}

.page-content .entry-content a:hover {
    color: #c81017;
    box-shadow: 0 3px 0 0 rgba(237, 28, 36, 0.35);
}

.page-content .entry-content ul,
.page-content .entry-content ol {
    margin: 1.2em 0 1.5em 1.5em;
    padding-left: 0.5em;
}

.page-content .entry-content ul {
    list-style-type: disc;
}

.page-content .entry-content ul ul {
    list-style-type: circle;
    margin-top: 0.4em;
}

.page-content .entry-content ol {
    list-style-type: decimal;
}

.page-content .entry-content li {
    margin-bottom: 0.6em;
    padding-left: 0.4em;
}

.page-content .entry-content blockquote {
    margin: 1.8em 0;
    padding: 24px 32px;
    border-left: 4px solid var(--primary-red);
    background: var(--light-bg);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--gray);
}

.page-content .entry-content blockquote p:last-child {
    margin-bottom: 0;
}

.page-content .entry-content blockquote cite {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    color: var(--dark);
}

.page-content .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.page-content .entry-content table thead {
    background: var(--primary-red);
    color: white;
}

.page-content .entry-content table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-content .entry-content table td {
    padding: 14px 20px;
    border-bottom: 1px solid #eef2f6;
}

.page-content .entry-content table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.page-content .entry-content table tbody tr:hover {
    background: #f0f4f8;
}

.page-content .entry-content hr {
    border: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    margin: 2em 0;
    border-radius: 2px;
}

.page-content .entry-content pre {
    background: var(--dark);
    color: #e2e8f0;
    padding: 20px 24px;
    border-radius: 12px;
    overflow-x: auto;
    font-size: 15px;
    line-height: 1.6;
    margin: 1.5em 0;
}

.page-content .entry-content code {
    background: #f1f5f9;
    color: var(--primary-red);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.page-content .entry-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.page-content .entry-content figure {
    margin: 1.5em 0;
}

.page-content .entry-content figure img {
    border-radius: 16px;
    display: block;
    width: 100%;
}

.page-content .entry-content figcaption {
    font-size: 14px;
    color: var(--gray);
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

.page-content .entry-content .wp-block-image {
    margin: 1.5em 0;
}

.page-content .entry-content .wp-block-image img {
    border-radius: 16px;
}

.page-content .entry-content .wp-block-embed {
    margin: 1.5em 0;
}

.page-content .entry-content .wp-block-embed iframe {
    border-radius: 16px;
}

.page-content .page-links {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #eef2f6;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
}

.page-content .page-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 4px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-content .page-links a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.page-content .page-links > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 4px;
    background: var(--primary-red);
    border-radius: 50%;
    color: white;
}

@media (max-width: 768px) {
    .page-content {
        padding: 30px 0 60px;
    }

    .page-content .entry-header {
        padding: 30px 25px 20px;
    }

    .page-content .entry-title {
        font-size: 28px;
    }

    .page-content .post-thumbnail {
        margin: 0 25px 0;
        border-radius: 12px;
    }

    .page-content .entry-content {
        padding: 25px 25px 30px;
        font-size: 16px;
    }

    .page-content .entry-content h2 {
        font-size: 26px;
    }

    .page-content .entry-content h3 {
        font-size: 22px;
    }

    .page-content .entry-content h4 {
        font-size: 19px;
    }

    .page-content .entry-content blockquote {
        padding: 18px 20px;
        margin: 1.4em 0;
    }

    .page-content .entry-content table {
        font-size: 14px;
    }

    .page-content .entry-content table th,
    .page-content .entry-content table td {
        padding: 10px 12px;
    }

    .page-content .entry-content pre {
        padding: 16px 18px;
        font-size: 14px;
    }
}

/* ==================== KONTAKTNÝ FORMULÁR (CF7) — PRÉMIOVÝ ==================== */
.wpcf7 {
    margin-top: 24px;
    font-family: 'DM Sans', sans-serif;
    padding: 40px;
    /* background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%); */
    background: #fbfbfb;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.8), 0 4px 24px rgba(0,0,0,0.04);
}

.wpcf7-form {
    display: grid;
    /* gap: 28px; */
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form label {
    display: block;
    font-size: 15px;
    /* font-weight: 700; */
    /* text-transform: uppercase; */
    letter-spacing: 0.9px;
    color: #64748b;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    margin-top: 4px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 5px 22px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.wpcf7-form input[type="text"]:hover,
.wpcf7-form input[type="email"]:hover,
.wpcf7-form input[type="tel"]:hover,
.wpcf7-form input[type="url"]:hover,
.wpcf7-form input[type="number"]:hover,
.wpcf7-form input[type="date"]:hover,
.wpcf7-form select:hover,
.wpcf7-form textarea:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form input[type="date"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 6px rgba(2, 174, 239, 0.10), 0 4px 16px rgba(2, 174, 239, 0.08);
    background: #ffffff;
    transform: translateY(-1px);
}

.wpcf7-form textarea {
    min-height: 180px;
    resize: vertical;
}

/* Submit button — gradient, premium */
.wpcf7-form input[type="submit"],
.wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    /* padding: 20px 48px; */
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.4px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0195cc 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-shadow: 0 8px 24px rgba(2, 174, 239, 0.25);
    position: relative;
    overflow: hidden;
}

.wpcf7-form input[type="submit"]::after,
.wpcf7-submit::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
    background: linear-gradient(135deg, #0195cc 0%, #007bb5 100%);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(2, 174, 239, 0.35);
}

.wpcf7-form input[type="submit"]:hover::after,
.wpcf7-submit:hover::after {
    transform: translateX(4px);
}

.wpcf7-form input[type="submit"]:active,
.wpcf7-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(2, 174, 239, 0.25);
}

/* Custom Checkbox & Radio */
.wpcf7-form .wpcf7-checkbox label,
.wpcf7-form .wpcf7-radio label,
.wpcf7-form .wpcf7-acceptance label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 8px;
    color: var(--dark);
}

.wpcf7-form .wpcf7-checkbox input[type="checkbox"],
.wpcf7-form .wpcf7-radio input[type="radio"],
.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
    margin-top: 1px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.wpcf7-form .wpcf7-radio input[type="radio"] {
    border-radius: 50%;
}

.wpcf7-form .wpcf7-checkbox input[type="checkbox"]:hover,
.wpcf7-form .wpcf7-acceptance input[type="checkbox"]:hover,
.wpcf7-form .wpcf7-radio input[type="radio"]:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(2, 174, 239, 0.08);
}

.wpcf7-form .wpcf7-checkbox input[type="checkbox"]:checked,
.wpcf7-form .wpcf7-acceptance input[type="checkbox"]:checked {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.wpcf7-form .wpcf7-radio input[type="radio"]:checked {
    background: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: inset 0 0 0 5px #fff;
}

.wpcf7-form .wpcf7-checkbox input[type="checkbox"]:checked::after,
.wpcf7-form .wpcf7-acceptance input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

/* Validation error message */
.wpcf7-form .wpcf7-not-valid-tip {
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 700;
    margin-top: 8px;
    display: block;
    padding-left: 8px;
    border-left: 3px solid var(--primary-red);
}

.wpcf7-form .wpcf7-not-valid {
    border-color: var(--primary-red) !important;
    background: #fff5f5 !important;
}

.wpcf7-form .wpcf7-not-valid:focus {
    box-shadow: 0 0 0 6px rgba(237, 28, 36, 0.10) !important;
    background: #fff !important;
}

/* Response messages — glass pills */
.wpcf7-response-output {
    margin: 28px 0 0;
    padding: 18px 24px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    border: none !important;
    text-align: center;
    backdrop-filter: blur(10px);
}

.wpcf7-response-output.wpcf7-validation-errors {
    background: rgba(237, 28, 36, 0.08);
    color: #c81017;
    box-shadow: 0 4px 16px rgba(237, 28, 36, 0.08);
}

.wpcf7-response-output.wpcf7-mail-sent-ok,
.wpcf7-response-output.wpcf7-mail-sent-ng {
    background: rgba(22, 163, 74, 0.08);
    color: #15803d;
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.08);
}

.wpcf7-response-output.wpcf7-spam-blocked {
    background: rgba(245, 158, 11, 0.08);
    color: #b45309;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.08);
}

/* Spinner / loading */
.wpcf7-spinner {
    width: 28px;
    height: 28px;
    border: 3.5px solid rgba(2, 174, 239, 0.12);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: cf7-spin 0.7s linear infinite;
    margin-left: 14px;
    vertical-align: middle;
    display: inline-block;
}

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

/* Two-column layout (name + email side by side) */
@media (min-width: 768px) {
    .wpcf7-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .wpcf7 {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .wpcf7-form input[type="submit"],
    .wpcf7-submit {
        padding: 5px 32px;
        font-size: 16px;
    }

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form input[type="number"],
    .wpcf7-form input[type="date"],
    .wpcf7-form select,
    .wpcf7-form textarea {
        padding: 5px 16px;
        font-size: 16px;
        border-radius: 14px;
    }

    .wpcf7-form label {
        font-size: 11px;
    }
}

/* ARCHÍV PREDAJNÍ */
.stores-archive .container,
.post-type-archive-pozicie .container,
.post-type-archive-recepty .container {
    padding: 80px;
    background: var(--light-bg);
}

.archive-header {
    text-align: center;
    margin-bottom: 60px;
}

.archive-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.archive-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.store-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.store-card--active {
    box-shadow: 0 0 0 3px var(--primary-blue), 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.store-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.store-card:hover .store-image img {
    transform: scale(1.05);
}

.store-content {
    padding: 30px;
}

.store-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0;
}

.store-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.store-badge img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

/* Rohový badge Zálohujeme */
.store-badge-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    z-index: 2;
    pointer-events: none;
}

.store-badge-corner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 90px 90px 0;
    border-color: transparent #fff transparent transparent;
    filter: drop-shadow(-2px 2px 4px rgba(0,0,0,0.08));
}

.store-badge-corner img {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    object-fit: contain;
    z-index: 3;
    pointer-events: auto;
}

.store-badge-corner--detail::before {
    border-width: 0 110px 110px 0;
}

.store-badge-corner--detail img {
    top: 14px;
    right: 14px;
    width: 52px;
    height: 52px;
}

.store-location {
    margin-bottom: 20px;
}

.store-city {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-red);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-address {
    display: block;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.5;
}

.store-hours {
    background: var(--light-bg);
    border-radius: 12px;
    /* padding: 18px 20px; */
    margin-bottom: 20px;
}

.hours-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 4px 0;
}

.hours-day {
    font-weight: 600;
    color: var(--dark);
}

.hours-time {
    color: var(--gray);
}

.store-contact {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}

.store-contact a:hover {
    color: var(--primary-red);
}

.store-contact svg {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.store-maps-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    width: 100%;
    justify-content: center;
}

.store-maps-link:hover {
    background: #0195cc;
    transform: translateY(-2px);
}

.store-maps-link svg {
    flex-shrink: 0;
}

.no-stores {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    padding: 60px 0;
}

@media (max-width: 1024px) {
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .stores-archive {
        padding:0 0 60px;
    }

    .archive-title {
        font-size: 30px;
    }

    .stores-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .store-image {
        height: 180px;
    }

    .store-content {
        padding: 24px;
    }

    .store-name {
        font-size: 20px;
    }
}

/* PAGINÁCIA PREDAJNÍ */
.stores-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.store-page-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.store-page-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.store-page-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: default;
}

.store-page-counter {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
    min-width: 120px;
    text-align: center;
}

@media (max-width: 768px) {
    .stores-pagination {
        margin-top: 24px;
    }

    .store-page-btn {
        width: 38px;
        height: 38px;
    }

    .store-page-counter {
        font-size: 14px;
        min-width: 100px;
    }
    .stores-archive .container,
.post-type-archive-pozicie .container,
.post-type-archive-recepty .container {
    padding:20px;
}
}

/* ARCHÍV POZÍCIÍ */
.jobs-archive {
    /* padding: 60px 0 100px; */
    background: var(--light-bg);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.job-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.job-content {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.job-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.job-excerpt {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
}

.job-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    width: 100%;
}

.job-btn:hover {
    background: #0195cc;
    transform: translateY(-2px);
}

.job-btn svg {
    flex-shrink: 0;
}

.no-jobs {
    text-align: center;
    padding: 80px 0;
    color: var(--gray);
}

.no-jobs svg {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.no-jobs p {
    font-size: 18px;
    margin-bottom: 24px;
}

.jobs-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.job-page-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-page-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.job-page-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: default;
}

.job-page-counter {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
    min-width: 120px;
    text-align: center;
}

@media (max-width: 1024px) {
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .jobs-archive {
        padding: 0;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .job-content {
        padding: 28px 24px;
    }

    .job-title {
        font-size: 20px;
    }

    .job-excerpt {
        font-size: 14px;
    }

    .jobs-pagination {
        margin-top: 24px;
    }

    .job-page-btn {
        width: 38px;
        height: 38px;
    }

    .job-page-counter {
        font-size: 14px;
        min-width: 100px;
    }
}

/* DETAIL POZÍCIE */
.single-job {
    padding: 60px 0 100px;
    background: var(--light-bg);
}

.job-article {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 60px rgba(0,0,0,0.08);
}

.job-header {
    padding: 50px 50px 50px;
}

.job-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.job-back:hover {
    color: var(--primary-red);
}

.job-detail-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.job-detail-image {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
}

.job-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.job-detail-content {
    padding: 40px 50px 30px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--dark);
}

.job-detail-content h2,
.job-detail-content h3 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin: 1.5em 0 0.6em;
}

.job-detail-content p {
    margin-bottom: 1.2em;
}

.job-detail-content ul,
.job-detail-content ol {
    margin: 1em 0 1.5em 1.5em;
}

.job-detail-content li {
    margin-bottom: 0.4em;
}

.job-footer {
    padding: 0 50px 50px;
    text-align: center;
}

.job-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.job-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.job-card:hover .job-image img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .single-job {
        padding: 40px 0 60px;
    }

    .job-header {
        padding: 30px 25px 15px;
    }

    .job-detail-title {
        font-size: 26px;
    }

    .job-detail-content {
        padding: 25px 25px 20px;
        font-size: 16px;
    }

    .job-footer {
        padding: 0 25px 30px;
    }

    .job-image {
        height: 160px;
    }
}

/* DETAIL PREDAJNE */
.single-store {
    padding: 60px 0 100px;
    background: var(--light-bg);
}

.store-detail-article {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 60px rgba(0,0,0,0.08);
}

.store-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.store-back:hover {
    color: var(--primary-red);
}

.store-detail-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 30px;
}

.store-detail-image {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.store-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-detail-grid {
    padding: 0 50px 50px;
}

.store-detail-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.store-detail-block {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 28px 30px;
}

.store-detail-block h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-detail-block p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

.store-detail-block a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.store-detail-block a:hover {
    color: var(--primary-red);
}

.store-detail-city {
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .single-store {
        padding: 40px 0 60px;
    }

    .store-detail-title {
        font-size: 26px;
    }

    .store-detail-grid {
        padding: 0 25px 30px;
    }

    .store-detail-block {
        padding: 20px 22px;
    }

    .store-detail-image {
        max-height: 300px;
    }
}

/* TLAČIDLÁ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background: #0195cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(2, 174, 239, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

/* HERO SEKCIA PREDAJNÍ */
.stores-hero {
    position: relative;
    padding: 120px 24px 140px;
    background-color: var(--primary-red);
    background-image: linear-gradient(135deg, var(--primary-red) 0%, #c41820 50%, var(--primary-blue) 100%);
    text-align: center;
    overflow: hidden;
    /* clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%); */
}

.stores-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 1;
}

.stores-hero[style*="background-image"]::before {
    display: none;
}

.stores-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.stores-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.stores-hero-label svg {
    flex-shrink: 0;
}

.stores-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.stores-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .stores-hero {
        padding: 80px 20px;
    }

    .stores-hero-title {
        font-size: 34px;
    }

    .stores-hero-subtitle {
        font-size: 17px;
    }

    .stores-hero-label {
        font-size: 12px;
        padding: 8px 16px;
    }
}


/* HERO SEKCIA POZÍCIÍ */
.jobs-hero {
    position: relative;
    padding: 120px 24px 140px;
    background-color: var(--primary-blue);
    background-image: linear-gradient(135deg, var(--primary-blue) 0%, #0195cc 50%, #005f8f 100%);
    text-align: center;
    overflow: hidden;
}

.jobs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 1;
}

.jobs-hero[style*="background-image"]::before {
    display: none;
}

.jobs-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.jobs-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.jobs-hero-label svg {
    flex-shrink: 0;
}

.jobs-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.jobs-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .jobs-hero {
        padding: 80px 20px 100px;
    }

    .jobs-hero-title {
        font-size: 34px;
    }

    .jobs-hero-subtitle {
        font-size: 17px;
    }

    .jobs-hero-label {
        font-size: 12px;
        padding: 8px 16px;
    }
}


/* ==================== RECEPTY ==================== */

/* HERO SEKCIA RECEPTY */
.recipes-hero {
    position: relative;
    padding: 120px 24px 140px;
    background-color: #f97316;
    background-image: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
    text-align: center;
    overflow: hidden;
}

.recipes-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 1;
}

.recipes-hero[style*="background-image"]::before {
    display: none;
}

/* HERO SEKCIA SINGLE POST */
.single-hero {
    position: relative;
    padding: 120px 24px 140px;
    background-color: var(--primary-red);
    background-image: linear-gradient(135deg, var(--primary-red) 0%, #c81017 50%, #8b0a10 100%);
    text-align: center;
    overflow: hidden;
}

.single-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 1;
}

.single-hero[style*="background-image"]::before {
    display: none;
}

.single-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.single-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.single-hero-label svg {
    flex-shrink: 0;
}

.single-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.single-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .single-hero {
        padding: 80px 20px 100px;
    }

    .single-hero-title {
        font-size: 34px;
    }

    .single-hero-subtitle {
        font-size: 17px;
    }

    .single-hero-label {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* HERO SEKCIA BEŽNÉ STRÁNKY (PAGE) */
.page-hero {
    position: relative;
    padding: 120px 24px 140px;
    background-color: var(--primary-blue);
    background-image: linear-gradient(135deg, var(--primary-blue) 0%, #0195cc 50%, #005f8f 100%);
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 1;
}

.page-hero[style*="background-image"]::before {
    display: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.page-hero-label svg {
    flex-shrink: 0;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.page-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 20px 100px;
    }

    .page-hero-title {
        font-size: 34px;
    }

    .page-hero-subtitle {
        font-size: 17px;
    }

    .page-hero-label {
        font-size: 12px;
        padding: 8px 16px;
    }
}

.recipes-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.recipes-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.recipes-hero-label svg {
    flex-shrink: 0;
}

.recipes-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.recipes-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

/* ARCHÍV RECEPTY */
.recipes-archive {
    background: var(--light-bg);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.recipe-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.recipe-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.05);
}

.recipe-content {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.recipe-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.recipe-excerpt {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
}

.recipe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: #f97316;
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    width: 100%;
}

.recipe-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.recipe-btn svg {
    flex-shrink: 0;
}

.no-recipes {
    text-align: center;
    padding: 80px 0;
    color: var(--gray);
}

.no-recipes svg {
    color: #f97316;
    margin-bottom: 20px;
}

.no-recipes p {
    font-size: 18px;
    margin-bottom: 24px;
}

/* PAGINATION RECEPTY */
.recipes-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.recipe-page-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #f97316;
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #f97316;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recipe-page-btn:hover {
    background: #f97316;
    color: white;
    transform: scale(1.1);
}

.recipe-page-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: default;
}

.recipe-page-counter {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
    min-width: 120px;
    text-align: center;
}

/* DETAIL RECEPTY */
.single-recipe {
    /* padding: 60px 0 100px; */
    background: var(--light-bg);
}

.recipe-article {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 60px rgba(0,0,0,0.08);
}

.recipe-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.recipe-back:hover {
    color: #f97316;
}

.recipe-header {
    padding: 50px 50px 50px;
}

.recipe-detail-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.recipe-detail-image {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
}

.recipe-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.recipe-detail-content {
    padding: 40px 50px 30px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--dark);
}

.recipe-detail-content h2,
.recipe-detail-content h3 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin: 1.5em 0 0.6em;
}

.recipe-detail-content p {
    margin-bottom: 1.2em;
}

.recipe-detail-content ul,
.recipe-detail-content ol {
    margin: 1em 0 1.5em 1.5em;
}

.recipe-detail-content li {
    margin-bottom: 0.4em;
}

.recipe-footer {
    padding: 0 50px 50px;
    text-align: center;
}

/* RESPONSIVE RECEPTY */
@media (max-width: 1024px) {
    .recipes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .recipes-hero {
        padding: 80px 20px 100px;
    }

    .recipes-hero-title {
        font-size: 34px;
    }

    .recipes-hero-subtitle {
        font-size: 17px;
    }

    .recipes-hero-label {
        font-size: 12px;
        padding: 8px 16px;
    }

    .recipes-archive {
        padding: 0;
    }

    .recipes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .recipe-content {
        padding: 28px 24px;
    }

    .recipe-image {
        height: 180px;
    }

    .recipes-pagination {
        margin-top: 24px;
    }

    .recipe-page-btn {
        width: 38px;
        height: 38px;
    }

    .recipe-page-counter {
        font-size: 14px;
        min-width: 100px;
    }

    .single-recipe {
        padding: 40px 0 60px;
    }

    .recipe-header {
        padding: 30px 25px 15px;
    }

    .recipe-detail-title {
        font-size: 26px;
    }

    .recipe-detail-content {
        padding: 25px 25px 20px;
        font-size: 16px;
    }

    .recipe-footer {
        padding: 0 25px 30px;
    }

    .recipe-detail-image {
        max-height: 300px;
    }
}


/* ==================== LOGÁ PARTNEROV ==================== */
.logos-archive {
    padding: 80px 0 100px;
    background: var(--light-bg);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.logo-item {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 2;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    overflow: hidden;
}

.logo-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.logo-item:hover img {
    transform: scale(1.05);
}

.no-logos {
    text-align: center;
    padding: 80px 0;
    color: var(--gray);
}

.no-logos svg {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.no-logos p {
    font-size: 18px;
}

@media (max-width: 1200px) {
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .logo-item {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .logos-archive {
        padding: 50px 0 70px;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .logo-item {
        padding: 24px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .logo-item {
        padding: 18px;
        border-radius: 14px;
    }
}


/* ==================== POSTY PODLA KATEGORIE ==================== */
.posts-archive {
    /* padding: 60px 0 100px; */
    background: var(--light-bg);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.post-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 28px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-card-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin: 0 0 12px;
}

.post-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card-title a:hover {
    color: var(--primary-red);
}

.post-card-excerpt {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray);
    margin: 0 0 20px;
    flex-grow: 1;
}

.post-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-blue);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.post-card-btn:hover {
    background: var(--dark-blue);
    transform: translateX(4px);
}

.post-card-btn svg {
    transition: transform 0.3s ease;
}

.post-card-btn:hover svg {
    transform: translateX(3px);
}

.posts-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.post-page-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.post-page-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.post-page-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: default;
}

/* WordPress default paginate_links() styling */
.posts-pagination .page-numbers {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.posts-pagination .page-numbers:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.posts-pagination .page-numbers.current {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.posts-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    color: var(--gray);
    width: auto;
    padding: 0 8px;
    cursor: default;
    transform: none;
}

.posts-pagination .page-numbers.dots:hover {
    background: transparent;
    color: var(--gray);
    transform: none;
}

.post-page-counter {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
    min-width: 120px;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
}

.no-posts {
    text-align: center;
    padding: 80px 0;
    color: var(--gray);
}

.no-posts svg {
    color: var(--light-gray)
}

.no-posts p {
    font-size: 18px;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .post-card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .posts-archive {
        /* padding: 40px 0 60px; */
    }
    .posts-archive .container{
        padding-top: 20px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .post-card-image {
        height: 180px;
    }

    .post-card-content {
        padding: 22px 24px 24px;
    }

    .post-card-title {
        font-size: 18px;
    }

    .posts-pagination {
        margin-top: 36px;
        gap: 8px;
    }

    .post-page-btn {
        width: 38px;
        height: 38px;
    }

    .posts-pagination .page-numbers {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .posts-pagination .page-numbers.dots {
        padding: 0 4px;
    }

    .post-page-counter {
        font-size: 14px;
        min-width: 100px;
    }
}


/* ==================== 404 ERROR PAGE ==================== */
.error-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.error-content {
    padding: 80px 0 100px;
    background: var(--light-bg);
}

.error-box {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.error-icon {
    color: var(--primary-blue);
    margin-bottom: 24px;
    opacity: 0.35;
}

.error-icon svg {
    display: block;
    margin: 0 auto;
}

.error-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 12px;
}

.error-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
    margin: 0 0 32px;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.error-btn-home,
.error-btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.error-btn-home {
    background: var(--primary-blue);
    color: white;
    border: 2px solid var(--primary-blue);
}

.error-btn-home:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
}

.error-btn-contact {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.error-btn-contact:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .error-content {
        padding: 40px 0 60px;
    }

    .error-box {
        padding: 40px 28px;
        border-radius: 20px;
    }

    .error-icon svg {
        width: 80px;
        height: 80px;
    }

    .error-title {
        font-size: 24px;
    }

    .error-text {
        font-size: 15px;
    }

    .error-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .error-btn-home,
    .error-btn-contact {
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ==================== SEARCH FULL LINK ==================== */
.search-full-link {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    margin-top: 8px;
    border-radius: 12px;
    background: var(--light-gray);
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.search-full-link:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.search-full-link svg {
    flex-shrink: 0;
}

/* ==================== SEARCH RESULTS PAGE ==================== */
.search-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.search-content {
    padding: 60px 0 80px;
}

.search-count {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 32px;
    font-weight: 500;
}

.search-count strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.search-result-type {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-blue);
    margin-bottom: 8px;
    padding: 4px 10px;
    background: rgba(2, 174, 239, 0.08);
    border-radius: 6px;
}

.search-page-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 24px auto 0;
}

.search-page-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(2, 174, 239, 0.2);
    border-radius: 12px;
    font-family: 'Urbanist', sans-serif;
    font-size: 15px;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s ease;
}

.search-page-input:focus {
    border-color: var(--primary-blue);
}

.search-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.search-page-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .search-content {
        padding: 40px 0 60px;
    }

    .search-page-form {
        flex-direction: column;
    }

    .search-page-btn {
        justify-content: center;
    }
}

/* ==================== KARIÉRA LANDING PAGE ==================== */

/* Hero */
.kariera-hero {
    position: relative;
    padding: 120px 24px 140px;
    background-color: var(--primary-blue);
    background-image: linear-gradient(135deg, var(--primary-blue) 0%, #0195cc 50%, #005f8f 100%);
    text-align: center;
    overflow: hidden;
}

.kariera-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 1;
}

.kariera-hero[style*="background-image"]::before {
    display: none;
}

.kariera-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.kariera-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.kariera-hero-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.kariera-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

/* Hlavný split layout */
.kariera-main-split {
    padding: 30px 0 40px;
    background: var(--light-bg);
}

.kariera-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.kariera-main-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kariera-main-right {
    position: sticky;
    top: 100px;
}

/* Formulár box */
.kariera-form-box {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary-blue);
}

/* Formulárové inputy — max-width pre mobile */
.kariera-form-box form,
.kontakt-form-box form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.kariera-form-box form > *,
.kontakt-form-box form > * {
    max-width: 100%;
    box-sizing: border-box;
}

.kariera-form-box input:not([type="checkbox"]):not([type="radio"]),
.kariera-form-box textarea,
.kariera-form-box select,
.kontakt-form-box input:not([type="checkbox"]):not([type="radio"]),
.kontakt-form-box textarea,
.kontakt-form-box select {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
}

.kariera-form-box .kariera-contact-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.kariera-form-box .kariera-contact-desc {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.55;
}

/* Intro karta */
.kariera-intro-card {
    background: white;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kariera-intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* Citát */
.kariera-quote {
    text-align: center;
    border-left: none;
    padding: 0;
    padding-bottom: 100px;
    margin: 0;
}

.kariera-quote p {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 12px;
}

.kariera-quote cite {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-blue);
    font-style: normal;
}

/* Úvodný text */
.kariera-intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
}

.kariera-intro p {
    margin-bottom: 12px;
}

.kariera-intro ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.kariera-intro ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.kariera-intro ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2302AEEF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.kariera-intro-cta {
    margin-top: 16px;
}

.kariera-intro-link {
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.kariera-intro-link:hover {
    color: #c4181f;
    text-decoration: underline;
}

/* Split sekcia — Ponúkame / Očakávame + formulár */
.kariera-split-section {
    padding: 30px 0 40px;
    background: var(--light-bg);
}

.kariera-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.kariera-split-col--list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kariera-split-col--form {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary-blue);
    position: sticky;
    top: 100px;
}

.kariera-benefits-card {
    background: white;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kariera-benefits-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.kariera-benefits-card--green {
    border-top-color: #2e7d32;
}

.kariera-benefits-card--red {
    border-top-color: #e53935;
}

.kariera-benefits-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.kariera-benefits-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    flex-shrink: 0;
}

.kariera-benefits-card--green .kariera-benefits-icon {
    background: #e8f5e9;
    color: #2e7d32;
}

.kariera-benefits-card--red .kariera-benefits-icon {
    background: #ffebee;
    color: #c62828;
}

.kariera-benefits-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--dark);
}

.kariera-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kariera-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.kariera-benefits-list li:last-child {
    border-bottom: none;
}

.list-bullet {
    display: inline-block;
    flex-shrink: 0;
    margin-top: 2px;
    width: 18px;
    height: 18px;
}

.list-bullet--green {
    color: #2e7d32;
}

.list-bullet--red {
    color: #e53935;
}

/* Formulár v split stĺpci */
.kariera-split-col--form .kariera-contact-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.kariera-split-col--form .kariera-contact-desc {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.55;
}
.kariera-hero .container,
.kariera-quote-section .container,
.kariera-intro-section .container,
.kariera-split-section .container,
.kariera-cta-section .container{
    padding: 0 40px;
}

/* ==================== O NÁS PAGE ==================== */
.onas-main-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    padding-top: 20px;
}

.onas-sekcie-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 30px 0 60px;
}

.onas-sekcia {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.onas-sekcia-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    display: flex;
}

.onas-sekcia-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
}

.onas-sekcia-text {
    display: flex;
    align-items: center;
}

.onas-sekcia-text--full {
    grid-column: 1 / -1;
}

.onas-sekcia-text--full .onas-info-card {
    max-width: 900px;
    margin: 0 auto;
}

.onas-info-card {
    background: white;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.onas-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.onas-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.onas-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
}

.onas-info-icon svg {
    display: block;
}

.onas-info-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0;
}

.onas-info-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.onas-info-text p {
    margin-bottom: 12px;
}

.onas-info-text p:last-child {
    margin-bottom: 0;
}

.onas-info-text strong {
    color: var(--dark);
    font-weight: 700;
}

/* Responzívne O nás */
@media (max-width: 768px) {
    .onas-main-title {
        font-size: 32px;
        padding-top: 10px;
    }

    .onas-sekcie-wrapper {
        padding: 20px 0 40px;
        gap: 30px;
    }

    .onas-sekcia {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .onas-sekcia-img {
        order: -1;
    }

    .onas-sekcia-img img {
        max-height: 300px;
        width: 100%;
    }

    .onas-info-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .onas-info-title {
        font-size: 20px;
    }

    .onas-info-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .onas-info-card {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .onas-info-title {
        font-size: 18px;
    }
}

/* ==================== KONTAKT PAGE ==================== */
.kontakt-main-split {
    padding: 30px 0 40px;
    background: var(--light-bg);
}

.kontakt-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.kontakt-main-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kontakt-main-right {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kontakt-info-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kontakt-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.kontakt-info-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0;
}

.kontakt-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.kontakt-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
}

.kontakt-info-icon svg {
    display: block;
}

.kontakt-info-block {
    margin-bottom: 16px;
}

.kontakt-info-firma {
    font-weight: 700;
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 4px;
}

.kontakt-info-adresa {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 8px;
}

.kontakt-info-orsr {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

.kontakt-info-row {
    display: flex;
    gap: 8px;
    padding: 6px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.kontakt-info-row:last-child {
    border-bottom: none;
}

.kontakt-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.kontakt-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    color: var(--dark);
    background: var(--light-bg);
}

.kontakt-social-link:hover {
    transform: translateY(-2px);
}

.kontakt-social-link--fb:hover {
    background: #1877F2;
    color: white;
}

.kontakt-social-link--ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.kontakt-info-label {
    font-weight: 600;
    color: var(--dark);
    min-width: 90px;
}

.kontakt-info-value {
    color: var(--text-color);
}

.kontakt-oddelenie {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.kontakt-oddelenie:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.kontakt-oddelenie-nazov {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.kontakt-oddelenie-row {
    display: flex;
    gap: 8px;
    padding: 4px 0;
    font-size: 15px;
}

.kontakt-info-link {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.kontakt-info-link:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.kontakt-form-box {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary-blue);
}

.kontakt-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.kontakt-form-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0;
}

.kontakt-form-desc {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.55;
}

.kontakt-map iframe {
    display: block;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* Responzívne kontakt */
@media (max-width: 768px) {
    .kontakt-main-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .kontakt-main-right {
        position: static;
    }

    .kontakt-info-card,
    .kontakt-form-box {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .kontakt-info-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .kontakt-main-split .container {
        padding: 0 12px;
    }

    .kontakt-info-card,
    .kontakt-form-box {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .kontakt-info-title {
        font-size: 18px;
    }
}

/* ==================== VŠEOBECNÉ FORMULÁROVÉ ŠTÝLY ==================== */

form {
    text-align: left;
}

form p {
    margin-bottom: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="date"],
textarea,
select {
    width: 100%;
    height: 44px;
    padding: 10px 14px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    background: white;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

textarea {
    height: auto;
    min-height: 100px;
    resize: vertical;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(2, 174, 239, 0.12);
}

/* File upload */
input[type="file"] {
    height: auto;
    padding: 10px 14px;
    font-size: 14px;
    border: 1.5px dashed rgba(0,0,0,0.15);
    background: #fafafa;
    cursor: pointer;
}

input[type="file"]::file-selector-button {
    height: 32px;
    padding: 0 14px;
    margin-right: 12px;
    border: none;
    border-radius: 8px;
    background: var(--primary-blue);
    color: white;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

input[type="file"]::file-selector-button:hover {
    background: var(--dark-blue);
}

/* Odosielacie tlačidlo vo formulári */
input[type="submit"],
button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 28px;
    border: none;
    border-radius: 10px;
    background: var(--primary-blue);
    color: white;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
    background: var(--dark-blue);
    transform: translateY(-1px);
}

/* Override pre header search — ponechať pôvodné štýly */
.search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background: white;
    color: var(--dark);
    height: auto;
    box-shadow: none;
}

.search-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(2, 174, 239, 0.1);
}

.nav-search .search-submit {
    position: absolute;
    top: 23px;
    right: 48px;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.nav-search .search-submit:hover {
    background: none;
    color: var(--primary-blue);
    transform: none;
}

/* Tlačidlo na voľné pozície */
.kariera-cta-section {
    padding: 20px 0 40px;
    text-align: center;
}

.kariera-jobs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-red);
    color: white;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(237, 28, 36, 0.3);
    transition: all 0.3s ease;
    max-width: 275px;
}

.kariera-jobs-btn:hover {
    background: #c4181f;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(237, 28, 36, 0.4);
}

.kariera-jobs-btn svg {
    flex-shrink: 0;
}

/* Responzívne */
@media (max-width: 768px) {
    .kariera-hero .container,
    .kariera-quote-section .container,
    .kariera-intro-section .container,
    .kariera-split-section .container,
    .kariera-cta-section .container {
        padding: 0 20px;
    }

    .kariera-hero {
        padding: 80px 20px 100px;
    }

    .kariera-hero-title {
        font-size: 30px;
    }

    .kariera-hero-subtitle {
        font-size: 16px;
    }

    .kariera-quote p {
        font-size: 18px;
    }

    .kariera-intro {
        font-size: 16px;
    }

    .kariera-main-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .kariera-main-left,
    .kariera-main-right {
        min-width: 0;
        max-width: 100%;
    }

    .kariera-main-left > *,
    .kariera-main-right > * {
        min-width: 0;
        max-width: 100%;
    }

    .kariera-intro-card,
    .kariera-benefits-card,
    .kariera-form-box {
        max-width: 100%;
        box-sizing: border-box;
    }

    .kariera-intro,
    .kariera-benefits-list li {
        overflow-wrap: break-word;
        word-break: normal;
    }

    .kariera-benefits-list li {
        min-width: 0;
    }

    .kariera-main-right {
        position: static;
    }

    .kariera-intro-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .kariera-form-box {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .kariera-benefits-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .kariera-benefits-header {
        gap: 12px;
        margin-bottom: 16px;
        flex-wrap: wrap;
    }

    .kariera-benefits-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .kariera-benefits-icon svg {
        width: 22px;
        height: 22px;
    }

    .kariera-benefits-title {
        font-size: 20px;
    }

    .kariera-benefits-list li {
        padding: 8px 0;
        font-size: 14px;
    }

    .kariera-form-box .kariera-contact-title {
        font-size: 20px;
    }

    .kariera-form-box .kariera-contact-desc {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .kariera-jobs-btn {
        font-size: 15px;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .kariera-main-split .container {
        padding: 0 12px;
    }

    .kariera-hero {
        padding: 60px 12px 80px;
    }

    .kariera-hero-title {
        font-size: 26px;
    }

    .kariera-hero-subtitle {
        font-size: 15px;
    }

    .kariera-quote p {
        font-size: 16px;
    }

    .kariera-intro {
        font-size: 16px;
    }

    .kariera-intro ul li {
        padding-left: 26px;
        margin-bottom: 8px;
    }

    .kariera-intro ul li::before {
        top: 2px;
        width: 16px;
        height: 16px;
    }

    .kariera-main-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .kariera-main-left,
    .kariera-main-right {
        min-width: 0;
        max-width: 100%;
    }

    .kariera-intro-card,
    .kariera-benefits-card,
    .kariera-form-box {
        max-width: 100%;
        box-sizing: border-box;
    }

    .kariera-intro,
    .kariera-benefits-list li {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .kariera-benefits-header {
        gap: 10px;
        margin-bottom: 12px;
        flex-wrap: wrap;
    }

    .kariera-intro-card {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .kariera-form-box {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .kariera-benefits-card {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .kariera-jobs-btn {
        display: flex;
    }

    .kariera-benefits-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .kariera-benefits-icon svg {
        width: 20px;
        height: 20px;
    }

    .kariera-benefits-title {
        font-size: 18px;
    }

    .kariera-benefits-list li {
        padding: 6px 0;
        font-size: 14px;
        gap: 8px;
    }

    .list-bullet {
        width: 16px;
        height: 16px;
    }

    .kariera-form-box .kariera-contact-title {
        font-size: 18px;
    }

    .kariera-form-box .kariera-contact-desc {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .kariera-jobs-btn {
        font-size: 14px;
        padding: 10px 20px;
        width: 100%;
        justify-content: center;
    }
}

/* ==================== REKLAMA / AKCIE ==================== */

/* Hero */
.reklama-hero {
    position: relative;
    padding: 120px 24px 140px;
    background-color: var(--primary-red);
    background-image: linear-gradient(135deg, var(--primary-red) 0%, #c41820 50%, var(--primary-blue) 100%);
    text-align: center;
    overflow: hidden;
}

.reklama-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 1;
}

.reklama-hero[style*="background-image"]::before {
    display: none;
}

.reklama-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.reklama-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.reklama-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.reklama-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

/* SEO intro */
.reklama-intro {
    padding: 40px 0 0;
    background: var(--light-bg);
}

.reklama-intro-text {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Grid */
.reklama-grid-section {
    padding: 40px 0 80px;
    background: var(--light-bg);
}
.reklama-grid-section .container{
    padding-top:0;
}

.reklama-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

/* Card */
.reklama-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reklama-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.reklama-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px;
}

.reklama-dodavatel {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.reklama-platnost {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-red);
    background: rgba(237, 28, 36, 0.08);
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
}

/* Banner wrapper — 16:9 aspect ratio */
.reklama-banner-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--light-bg);
}

/* Blurred backdrop */
.reklama-banner-bg {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(24px) brightness(0.85);
    transform: scale(1.1);
    z-index: 0;
}

/* Actual banner */
.reklama-banner-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.reklama-popis {
    padding: 16px 24px 8px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.reklama-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 24px 24px;
    padding: 12px 24px;
    background: var(--primary-red);
    color: white;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.reklama-btn:hover {
    background: #c41820;
    transform: translateY(-2px);
}

/* Empty state */
.reklama-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 17px;
}

/* Pagination */
.reklama-archive .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.reklama-archive .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    background: white;
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: background 0.2s ease, color 0.2s ease;
}

.reklama-archive .page-numbers:hover,
.reklama-archive .page-numbers.current {
    background: var(--primary-red);
    color: white;
}

/* ==================== SINGLE REKLAMA ==================== */
.reklama-single {
    background: var(--light-bg);
    padding-bottom: 80px;
}

.reklama-detail-hero {
    padding: 40px 0 0;
}

.reklama-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}

.reklama-back-link:hover {
    color: var(--primary-red);
}

.reklama-detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.reklama-detail-dodavatel {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.reklama-detail-platnost {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-red);
    background: rgba(237, 28, 36, 0.08);
    padding: 4px 14px;
    border-radius: 50px;
}

/* Hero detail */
.reklama-detail-hero {
    position: relative;
    padding: 120px 24px 100px;
    text-align: center;
    overflow: hidden;
    background-color: var(--primary-red);
    background-image: linear-gradient(135deg, var(--primary-red) 0%, #c41820 50%, var(--primary-blue) 100%);
}

.reklama-detail-hero[style*="background-image"] {
    background-image: none;
}

.reklama-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 0;
}

.reklama-detail-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.reklama-back-link--hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}

.reklama-back-link--hero:hover {
    color: white;
}

.reklama-detail-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.reklama-detail-hero-label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 50px;
}

.reklama-detail-hero-platnost {
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: rgba(255,255,255,0.12);
    padding: 6px 14px;
    border-radius: 50px;
}

.reklama-detail-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.reklama-detail-body {
    padding: 40px 0 80px;
    background: var(--light-bg);
}
.reklama-detail-body .container{
    max-width: 1024px;
}

.reklama-detail-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    padding: 32px;
    margin-bottom: 28px;
}

.reklama-detail-section:last-child {
    margin-bottom: 0;
}

.reklama-detail-sekcia-nadpis {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    /* color: var(--dark); */
    color: var(--primary-red);
    margin-bottom: 16px;
    margin-top: 32px;
    line-height: 1.3;
}

.reklama-detail-linky {
    margin-bottom: 24px;
}

.reklama-detail-linky-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.reklama-detail-linky-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--border);
}

.reklama-detail-linky-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    color: var(--primary-red);
}

.reklama-detail-linky-ikonka {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--light-bg);
    color: var(--primary-red);
}

.reklama-detail-linky-item--pdf .reklama-detail-linky-ikonka {
    background: rgba(237, 28, 36, 0.08);
}

.reklama-detail-linky-item--obrazok .reklama-detail-linky-ikonka {
    background: rgba(2, 174, 239, 0.08);
    color: var(--primary-blue);
}

.reklama-detail-linky-item--externy .reklama-detail-linky-ikonka {
    background: rgba(0, 95, 143, 0.08);
    color: var(--primary-blue);
}

.reklama-detail-linky-nazov {
    flex: 1;
    line-height: 1.3;
}

.reklama-detail-linky-sipka {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.reklama-detail-linky-item:hover .reklama-detail-linky-sipka {
    transform: translateX(4px);
}

.reklama-detail-banner-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    background: var(--light-bg);
    margin-bottom: 32px;
}

.reklama-detail-banner-bg {
    position: absolute;
    inset: -30px;
    background-size: cover;
    background-position: center;
    filter: blur(30px) brightness(0.85);
    transform: scale(1.1);
    z-index: 0;
}

.reklama-detail-banner-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
}

.reklama-detail-popis {
    font-size: 17px;
    color: var(--dark);
    line-height: 1.7;
    /* max-width: 800px; */
    margin-bottom: 20px;
}

.reklama-detail-availability {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(2, 174, 239, 0.08);
    border: 1px solid rgba(2, 174, 239, 0.2);
    color: var(--primary-blue);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.reklama-detail-availability svg {
    flex-shrink: 0;
}

.reklama-detail-content {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 32px;
}

.reklama-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.reklama-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.reklama-detail-btn--primary {
    background: var(--primary-red);
    color: white;
}

.reklama-detail-btn--primary:hover {
    background: #c41820;
    transform: translateY(-2px);
}

.reklama-detail-btn--secondary {
    background: white;
    color: var(--dark);
    border: 1px solid var(--border);
}

.reklama-detail-btn--secondary:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.reklama-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.2s ease;
}

.reklama-back-link:hover {
    color: var(--primary-red);
}

.reklama-detail-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

.reklama-detail-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.reklama-detail-dodavatel {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.reklama-detail-platnost {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-red);
    background: rgba(237, 28, 36, 0.08);
    padding: 4px 14px;
    border-radius: 50px;
}

.reklama-lightbox-trigger {
    display: block;
    cursor: zoom-in;
}

.reklama-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: reklamaFadeIn 0.25s ease;
}

.reklama-lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
}

.reklama-lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.reklama-lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.reklama-lightbox-close:hover {
    background: rgba(255,255,255,0.1);
}

@keyframes reklamaFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Predajne v detaile akcie */
.reklama-detail-predajne {
    margin-top: 24px;
}

.reklama-detail-predajne-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.reklama-detail-predajne-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    text-decoration: none;
    color: var(--dark);
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reklama-detail-predajne-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--primary-blue);
}

.reklama-detail-predajne-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(2, 174, 239, 0.08);
    color: var(--primary-blue);
}

.reklama-detail-predajne-info {
    flex: 1;
    min-width: 0;
}

.reklama-detail-predajne-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
}

.reklama-detail-predajne-info span {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

.reklama-detail-predajne-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.2s ease, color 0.2s ease;
}

.reklama-detail-predajne-card:hover .reklama-detail-predajne-arrow {
    transform: translateX(4px);
    color: var(--primary-blue);
}

/* Responzívne Reklama */
@media (max-width: 768px) {
    .reklama-hero {
        padding: 80px 20px;
    }

    .reklama-hero-title {
        font-size: 34px;
    }

    .reklama-hero-subtitle {
        font-size: 17px;
    }

    .reklama-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .reklama-card-header {
        padding: 16px 20px 8px;
    }

    .reklama-popis {
        padding: 12px 20px 4px;
    }

    .reklama-btn {
        margin: 4px 20px 20px;
    }

    .reklama-intro-text {
        font-size: 15px;
    }
    .reklama-intro .container{
        padding:0 40px !important;
    }

    .reklama-detail-hero {
        padding: 80px 20px 60px;
    }

    .reklama-detail-hero-title {
        font-size: 32px;
    }

    .reklama-detail-hero-meta {
        gap: 10px;
    }

    .reklama-detail-hero-label,
    .reklama-detail-hero-platnost {
        font-size: 13px;
        padding: 4px 12px;
    }

    .reklama-detail-linky-grid {
        grid-template-columns: 1fr;
    }

    .reklama-detail-sekcia-nadpis {
        font-size: 20px;
    }

    .reklama-detail-body {
        padding: 24px 0 60px;
    }

    .reklama-detail-section {
        padding: 24px;
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .reklama-detail-title {
        font-size: 28px;
    }

    .reklama-detail-predajne-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== LIGHTBOX PRE PREDAJNE ==================== */
.store-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.store-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.store-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(8px);
}

.store-lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.store-lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.2s ease;
    z-index: 3;
}

.store-lightbox-close:hover {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

.store-image img {
    cursor: zoom-in;
}

@media (max-width: 480px) {
    .reklama-hero {
        padding: 60px 16px 80px;
    }

    .reklama-hero-title {
        font-size: 28px;
    }

    .reklama-hero-label {
        font-size: 12px;
        padding: 8px 16px;
    }

    .reklama-detail-hero-title {
        font-size: 26px;
    }

    .reklama-detail-title {
        font-size: 24px;
    }
}