/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00b050;
    --primary-dark: #009040;
    --primary-light: #00d060;
    --secondary-color: #00b050;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header > .top-contact-bar {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.header > .top-contact-bar .container {
    display: block !important;
}

.header > .top-contact-bar .top-contact-bar-content {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
}

.header > .top-contact-bar .top-contact-link,
.header > .top-contact-bar .top-contact-link:link,
.header > .top-contact-bar .top-contact-link:visited,
.header > .top-contact-bar .top-contact-link:hover,
.header > .top-contact-bar .top-contact-link:active {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
}

.header > .top-contact-bar .top-contact-link:hover {
    color: #eafff3 !important;
    text-decoration: underline;
}

.header > .top-contact-bar .top-contact-link svg {
    stroke-width: 2;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.logo:hover {
    text-decoration: none;
    transform: scale(1.02);
}

.logo img {
    height: 70px;
    width: auto;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.logo .tagline {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 400;
}

.logo .tagline {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 400;
}

.header-mid-logo {
    display: none;
}

.header-contact {
    display: none;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.contact-link svg {
    stroke-width: 2;
}

.nav {
    padding: 1rem 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-caret {
    font-size: 0.7rem;
    line-height: 1;
}

.nav-submenu {
    list-style: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    min-width: 260px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 0.7rem;
    box-shadow: var(--shadow-lg);
    padding: 0.45rem 0;
    display: none;
    z-index: 1200;
}

.nav-submenu .nav-sublink {
    display: block;
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
}

.nav-submenu .nav-sublink::after {
    display: none;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown.open .nav-submenu {
    display: block;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Desktop header layout: logo + nav in first row, contact below divider */
@media (min-width: 969px) {
    .header .top-contact-bar .container {
        display: block;
        max-width: 1320px;
        padding: 0 30px;
    }

    .header .top-contact-bar .container::after {
        content: none;
    }

    .header {
        border-bottom: 1px solid var(--border-color);
    }

    .header .container {
        display: grid;
        grid-template-columns: minmax(240px, 320px) auto 1fr;
        grid-template-areas:
            "logo midlogo nav";
        align-items: center;
        column-gap: 1.25rem;
        max-width: 1320px;
        padding: 0 30px;
    }

    .header .container::after {
        content: none;
    }

    .header-top {
        display: contents;
        border-bottom: none;
    }

    .logo {
        grid-area: logo;
        padding: 1rem 0 1.2rem;
    }

    .nav {
        grid-area: nav;
        padding: 0;
        justify-self: start;
    }

    .header-mid-logo {
        grid-area: midlogo;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-left: -9.6rem;
    }

    .header-mid-logo img {
        max-width: 140px;
        width: auto;
        height: auto;
        display: block;
    }

    .nav-menu {
        gap: 1.5rem;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .nav-link {
        white-space: nowrap;
    }

}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        url("images/bysterec/LekPedagBysterec_202305_1.jpg") left center / 50% 100% no-repeat,
        url("images/parnica/Lek%C3%A1re%C5%88%20PEDAG%20P%C3%A1rnica%20outside%202025.jpg") right center / 50% 100% no-repeat,
        linear-gradient(135deg, #00b050 0%, #009040 100%);
    color: white;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-bg-indicators {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 2;
}

.hero-bg-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.hero-bg-indicator.active {
    background: #ffffff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    color: white;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hity mesiaca chain */
.promo-chain-section {
    background: var(--bg-light);
    padding: 1.25rem 0 1.75rem;
}

.promo-chain-title-wrap {
    text-align: center;
    margin-bottom: 0.85rem;
}

.promo-chain-title {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.promo-chain {
    overflow: hidden;
    width: 100%;
}

.promo-chain-track {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: max-content;
    animation: promoChainScroll 38s linear infinite;
    padding: 0.25rem 0;
}

.promo-chain:hover .promo-chain-track {
    animation-play-state: paused;
}

.promo-modal-open .promo-chain-track {
    animation-play-state: paused;
}

.promo-chain-track img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 0.8rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    cursor: zoom-in;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-chain-track img:hover,
.promo-chain-track img:focus-visible {
    transform: scale(1.08);
    box-shadow: var(--shadow-lg);
}

.promo-image-modal {
    position: fixed;
    inset: 0;
    z-index: 2800;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(17, 24, 39, 0.72);
}

.promo-image-modal.active {
    display: flex;
}

.promo-image-modal-card {
    position: relative;
    width: min(80vw, 760px);
    max-height: 92vh;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    padding: 0.9rem;
}

.promo-image-modal-close {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.9);
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.promo-image-modal-image {
    width: 100%;
    max-height: calc(82vh - 1.8rem);
    object-fit: contain;
    display: block;
    border-radius: 0.75rem;
}

/* Akcie PDF layout */
.akcie-pdf-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light);
}

.akcie-pdf-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    max-width: 980px;
    margin: 0 auto;
}

.akcie-pdf-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.akcie-pdf-card h3 {
    margin: 0;
    text-align: center;
    color: var(--text-dark);
}

.akcie-pdf-card iframe,
.akcie-pdf-frame,
.akcie-pdf-canvas {
    width: 100%;
    height: 640px;
    border: 0;
    border-radius: 0.7rem;
    background: #f3f4f6;
    display: block;
    object-fit: contain;
}

.akcie-pdf-card .btn {
    align-self: center;
}

.akcie-letak-image {
    width: 100%;
    height: 640px;
    border-radius: 0.7rem;
    background: #f3f4f6;
    object-fit: cover;
    display: block;
}

.single-poster-card {
    width: 100%;
    max-width: 900px;
    justify-self: center;
}

.akcie-poster-image {
    width: 100%;
    height: auto;
    border-radius: 0.7rem;
    background: #f3f4f6;
    object-fit: contain;
    display: block;
}

.akcie-mobile-fallback {
    display: none;
    position: relative;
    width: 100%;
    height: 460px;
    border-radius: 0.7rem;
    overflow: hidden;
    background: #f3f4f6;
}

.akcie-mobile-fallback img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.akcie-mobile-fallback img.active {
    opacity: 1;
}

@keyframes promoChainScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 2rem;
    justify-content: center;
    max-width: 980px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #00b050 0%, #009040 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* About Section */
.about {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about.about-full .about-content {
    grid-template-columns: 1fr;
}

.about-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about.about-full .about-text h2,
.about.about-full .about-text > p {
    text-align: center;
}

.values-list {
    list-style: none;
    margin-top: 1.5rem;
}

.values-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.values-list strong {
    color: var(--text-dark);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 1rem;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.image-placeholder-small {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services .service-card h3 {
    text-align: center;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Products Section */
.products {
    background: var(--bg-white);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    background: var(--bg-light);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.product-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: var(--primary-dark);
}

/* Loyalty Section */
.loyalty {
    background: var(--bg-white);
    color: var(--text-dark);
}

.loyalty-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.loyalty-text {
    text-align: center;
    width: 100%;
}

.loyalty-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.loyalty-text > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.loyalty-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 900px;
}

.loyalty-detail-card {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.loyalty-detail-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.loyalty-detail-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

.loyalty-highlight {
    font-size: 1.125rem !important;
    font-weight: 600;
    margin-bottom: 1rem !important;
    text-align: center;
}

.loyalty-benefits {
    list-style: none;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.loyalty-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.loyalty-benefits svg {
    flex-shrink: 0;
    stroke-width: 3;
}

.loyalty-card {
    display: flex;
    justify-content: center;
}

.card-design {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-xl);
}

.card-header {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.card-header span {
    font-size: 0.875rem;
    opacity: 0.8;
}

.card-body {
    margin-top: 3rem;
}

.card-number {
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
}

.card-holder {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Articles Section */
.articles {
    background: var(--bg-light);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.article-image {
    height: 200px;
    background: var(--bg-light);
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.article-content {
    padding: 1.5rem;
}

.article-date {
    font-size: 0.875rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.article-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.article-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.article-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: var(--primary-dark);
}

/* Contact Section */
.contact {
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.8;
}

.location-card p a,
.branch-info p a,
.contact-item p a,
.footer-section ul li a[href^="mailto:"],
.footer-section ul li a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-card p a:hover,
.branch-info p a:hover,
.contact-item p a:hover,
.footer-section ul li a[href^="mailto:"]:hover,
.footer-section ul li a[href^="tel:"]:hover {
    color: var(--primary-color);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    stroke-width: 2;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-dark);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.map-container {
    margin-top: 2rem;
}

.map-layout-desktop {
    display: block;
}

.map-layout-mobile {
    display: none;
}

.map-location-pairs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location-map-pair {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 969px) {
    /* Desktop: keep previous visual layout (maps row + info row) */
    .map-location-pairs {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1rem;
    }

    .location-map-pair {
        display: contents;
    }

    .location-map-pair:nth-child(1) .map-wrapper {
        grid-column: 1;
        grid-row: 1;
    }

    .location-map-pair:nth-child(2) .map-wrapper {
        grid-column: 2;
        grid-row: 1;
    }

    .location-map-pair:nth-child(1) .location-card {
        grid-column: 1;
        grid-row: 2;
    }

    .location-map-pair:nth-child(2) .location-card {
        grid-column: 2;
        grid-row: 2;
    }
}

.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.map-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
    position: relative;
}

.map-wrapper h4 {
    padding: 1.25rem;
    margin: 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 1rem 1rem 0 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.map-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.location-card {
    background: var(--bg-white);
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.location-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.location-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.map-section .location-card {
    text-align: center;
}

.location-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.map-section .location-card p {
    justify-content: center;
    text-align: center;
}

.location-card svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    stroke-width: 2;
    color: var(--primary-color);
}

.location-card .btn {
    margin-top: 0.75rem;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.map-section .location-card .btn {
    width: auto;
    min-width: 220px;
    display: inline-flex;
    justify-content: center;
    margin: 0.85rem auto 0;
}

/* Branches Section */
.branches {
    padding: 4rem 0;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.branch-card {
    background: var(--bg-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.branch-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.branch-image-carousel {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
    border-radius: 1rem 1rem 0 0;
}

.branch-map-title {
    margin: 0;
    padding: 0.95rem 1rem;
    background: var(--primary-color);
    color: #ffffff;
    text-align: center;
    font-size: 1.2rem;
    border-radius: 1rem 1rem 0 0;
}

.branch-map-title + .branch-image-carousel {
    border-radius: 0;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.branch-image-carousel .image-placeholder {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    background: linear-gradient(135deg, rgba(0, 176, 80, 0.15), rgba(0, 176, 80, 0.25));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.branch-image-carousel .image-placeholder svg {
    color: var(--primary-color);
    opacity: 0.5;
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 176, 80, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

.branch-info {
    padding: 2rem;
}

.branch-info p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.8;
}

.branch-info svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    stroke-width: 2;
    color: var(--primary-color);
}

.branch-info .btn {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

.branch-inline-map {
    margin: 0.9rem 0 0.35rem;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.branch-inline-map iframe {
    display: block;
    width: 100%;
    border: none;
}

/* Footer */
.footer {
    background: var(--bg-white);
    color: var(--text-dark);
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 3rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 600;
}

.footer-section p {
    color: var(--text-dark);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.footer-section ul li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-dark);
}

.nowrap-hours {
    white-space: nowrap;
}

.footer-bottom {
    background: var(--bg-white);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-dark);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2500;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: var(--shadow-xl);
    padding: 1rem 1.1rem;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.cookie-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 176, 80, 0.12);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-text h4 {
    margin: 0 0 0.35rem 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.cookie-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    margin-top: 0.85rem;
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.cookie-btn {
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 600;
    padding: 0.52rem 0.9rem;
    cursor: pointer;
}

.cookie-btn-primary {
    background: var(--primary-color);
    color: #ffffff;
}

.cookie-btn-primary:hover {
    background: var(--primary-dark);
}

.cookie-btn-outline {
    background: #ffffff;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.cookie-btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cookie-settings-modal {
    position: fixed;
    inset: 0;
    z-index: 2600;
    display: none;
}

.cookie-settings-modal.visible {
    display: block;
}

.cookie-settings-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.55);
}

.cookie-settings-dialog {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 7vh auto 0;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: var(--shadow-xl);
    padding: 1.1rem;
}

.cookie-settings-dialog h4 {
    margin: 0 0 0.4rem 0;
}

.cookie-settings-dialog p {
    margin: 0 0 0.8rem 0;
    color: var(--text-light);
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
    margin-bottom: 0.55rem;
}

.cookie-option strong {
    display: block;
    color: var(--text-dark);
}

.cookie-option span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.cookie-modal-actions {
    margin-top: 0.8rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.cookie-manage-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 2200;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cookie-manage-btn:hover {
    background: var(--primary-dark);
}

/* VP Documentation page */
.vp-docs .section-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.vp-docs-list {
    display: grid;
    gap: 0.85rem;
    max-width: 980px;
    margin: 0 auto;
}

.vp-doc-row {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 0.9rem;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    box-shadow: var(--shadow-sm);
}

.vp-doc-order {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 176, 80, 0.12);
    color: var(--primary-color);
    font-weight: 700;
}

.vp-doc-row h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.vp-doc-row .btn {
    white-space: nowrap;
    padding: 0.55rem 1rem;
}

/* Web Developer notification */
.dev-toast {
    position: fixed;
    right: 18px;
    top: 96px;
    width: min(360px, calc(100vw - 24px));
    background: #ffffff;
    color: var(--text-dark);
    border-radius: 14px;
    box-shadow: var(--shadow-xl);
    z-index: 2700;
    overflow: hidden;
}

.dev-toast-content {
    position: relative;
    z-index: 2;
    padding: 1rem 1rem 0.95rem;
}

.dev-toast h4 {
    margin: 0 0 0.4rem 0;
    color: var(--primary-color);
    font-size: 1rem;
}

.dev-toast p {
    margin: 0.2rem 0;
    font-size: 0.9rem;
    line-height: 1.35;
}

.dev-toast a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.dev-toast a:hover {
    text-decoration: underline;
}

.dev-toast-timer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.dev-toast-timer rect {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 3;
    stroke-linecap: round;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }

    .header-contact {
        display: none;
    }

    .header > .top-contact-bar .top-contact-bar-content {
        min-height: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0.35rem 0.7rem;
        text-align: center;
        padding: 0.3rem 0;
        font-size: 0.78rem;
    }

    .header > .top-contact-bar .top-contact-link {
        justify-content: center;
        font-weight: 500;
        line-height: 1.2;
        white-space: nowrap;
        font-size: 0.76rem;
    }

    .header > .top-contact-bar .top-contact-link svg {
        width: 14px;
        height: 14px;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 0.85rem;
    }

    .cookie-banner-content {
        gap: 0.65rem;
    }

    .cookie-text h4 {
        font-size: 0.95rem;
    }

    .cookie-text p {
        font-size: 0.84rem;
    }

    .cookie-settings-dialog {
        margin: 4vh 12px 0;
        max-width: none;
    }

    .cookie-manage-btn {
        right: 12px;
        bottom: 12px;
        width: 42px;
        height: 42px;
    }

    .dev-toast {
        right: 12px;
        left: 12px;
        top: 84px;
        width: auto;
    }

    .vp-doc-row {
        grid-template-columns: 36px 1fr;
        gap: 0.7rem;
    }

    .vp-doc-row .btn {
        grid-column: 1 / -1;
        width: 100%;
        text-align: center;
    }

    .header-top {
        padding: 0.75rem 0;
    }

    .logo img {
        height: 60px;
    }

    .header-mid-logo {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0.1rem 0 0.3rem;
    }

    .header-mid-logo img {
        max-width: 100px;
        width: 100px;
        height: auto;
        display: block;
        margin: 0 0 0 -0.45rem;
    }

    .nav {
        padding: 0 0 0.55rem;
    }

    .nav-menu {
        position: fixed;
        top: var(--mobile-top-bar-height, 56px);
        right: -100%;
        height: calc(100vh - var(--mobile-top-bar-height, 56px));
        width: 280px;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        align-items: stretch;
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: 0;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > .nav-link {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        padding: 0.25rem 0;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: flex-start;
    }

    .nav-submenu {
        position: static;
        min-width: 0;
        border: 0;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0.35rem;
        background: transparent;
        padding: 0 0 0 0.65rem;
        border-left: 2px solid rgba(0, 176, 80, 0.2);
    }

    .nav-dropdown:hover .nav-submenu {
        display: none;
    }

    .nav-dropdown.open .nav-submenu {
        display: block;
    }

    .nav-submenu .nav-sublink {
        display: block;
        text-align: left;
        padding: 0.45rem 0.1rem;
        font-size: 0.92rem;
    }

    .hero {
        min-height: 460px;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-content,
    .loyalty-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-logo {
        max-height: 300px;
    }

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

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 0.75rem;
        row-gap: 1rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .loyalty-content {
        grid-template-columns: 1fr;
    }
    
    .loyalty-details {
        grid-template-columns: 1fr;
    }
    
    .maps-grid {
        grid-template-columns: 1fr;
    }

    .map-layout-desktop {
        display: none;
    }

    .map-layout-mobile {
        display: block;
    }

    .map-location-pairs {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper iframe {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }

    .logo img {
        height: 50px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .page-header {
        padding: 1.5rem 0;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .hero {
        min-height: 400px;
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-scroll {
        bottom: 1rem;
    }

    .promo-chain-section {
        padding: 1rem 0 1.4rem;
    }

    .promo-chain-title {
        font-size: 1.25rem;
    }

    .promo-chain-track {
        gap: 0.6rem;
        animation-duration: 28s;
    }

    .promo-chain-track img {
        width: 112px;
        height: 112px;
        border-radius: 0.65rem;
    }

    .promo-image-modal-card {
        width: min(92vw, 560px);
        padding: 0.7rem;
    }

    .promo-image-modal-image {
        max-height: calc(78vh - 1.4rem);
    }

    .akcie-pdf-section {
        padding: 2rem 0 3rem;
    }

    .akcie-pdf-grid {
        grid-template-columns: 1fr;
    }

    .akcie-pdf-card iframe,
    .akcie-pdf-frame,
    .akcie-pdf-canvas {
        height: 460px;
    }

    .akcie-pdf-card iframe,
    .akcie-pdf-frame {
        display: none;
    }

    .akcie-mobile-fallback {
        display: block;
        height: 420px;
    }

    .akcie-letak-image {
        height: 420px;
    }

    .features-grid,
    .services-grid,
    .products-grid,
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card,
    .service-card,
    .article-card {
        padding: 1.25rem;
    }

    .feature-card {
        text-align: center;
    }

    .feature-icon,
    .service-icon {
        width: 48px;
        height: 48px;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        align-items: center;
    }

    .feature-icon i,
    .service-icon i {
        display: block;
        margin: 0 auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 1.75rem;
    }

    .about-text h3 {
        font-size: 1.25rem;
    }

    .about-logo {
        max-height: 250px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .loyalty-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .loyalty-detail-card {
        padding: 1.5rem;
    }

    .loyalty-text h2 {
        font-size: 2rem;
    }

    .branch-card {
        margin-bottom: 2rem;
    }

    .branch-info {
        padding: 1.5rem;
    }

    .map-wrapper iframe {
        height: 260px;
    }

    .map-locations {
        grid-template-columns: 1fr;
    }

    .location-card {
        padding: 1.5rem;
    }

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

    .contact-form-wrapper {
        margin-top: 2rem;
    }

    .contact-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-item h3 {
        font-size: 1.25rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        font-size: 0.9375rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9375rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .social-links a svg {
        width: 18px;
        height: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 0.75rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .article-image {
        height: 180px;
    }

    .article-content h3 {
        font-size: 1.125rem;
    }

    .article-content p {
        font-size: 0.875rem;
    }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.4rem;
    }

    .page-header {
        padding: 1.25rem 0;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .feature-icon,
    .service-icon {
        width: 44px;
        height: 44px;
    }

    .map-wrapper iframe {
        height: 220px;
    }

    .about-logo {
        max-height: 200px;
    }

    .contact-item p {
        font-size: 0.9375rem;
    }

    .footer-bottom p {
        font-size: 0.875rem;
    }
}

/* Landscape mobile orientation */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        min-height: 350px;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

