/*** Modern Clean Design - Orange Theme ***/

/* Base */
:root {
    --primary: #ff6b35;
    --secondary: #ff8c42;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #52525b;  /* Ciemniejszy dla lepszego kontrastu */
    
    /* Unified Spacing System */
    --spacing-xs: 0.5rem;   /* 8px */
    --spacing-sm: 1rem;     /* 16px */
    --spacing-md: 1.5rem;   /* 24px */
    --spacing-lg: 2rem;     /* 32px */
    --spacing-xl: 2.5rem;   /* 40px */
    --spacing-2xl: 3rem;    /* 48px */
    --spacing-3xl: 3.5rem;  /* 56px */
    
    /* Unified Typography System */
    --font-base: 1.0625rem;     /* 17px - body text (zwiększone z 16px) */
    --font-sm: 0.875rem;        /* 14px - small text */
    --font-lg: 1.125rem;        /* 18px - lead text */
    --font-xl: 1.25rem;         /* 20px - intro/lead */
    
    --line-height-tight: 1.3;   /* headings */
    --line-height-normal: 1.5;  /* body text */
    --line-height-relaxed: 1.6; /* lead/intro */
    
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

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

html {
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    padding: 0.75rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

/* New Hero Section */
.hero-new {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-new h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-new .lead {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-cta-primary {
    background: white;
    color: #ff6b35;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #ff5722;
}

.hero-cta-secondary {
    background: transparent;
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.hero-cta-secondary:hover {
    background: white;
    color: #ff6b35;
    transform: translateY(-2px);
}

/* Trust Bar */
.trust-bar {
    background: white;
    padding: var(--spacing-lg) 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trust-item {
    text-align: center;
    padding: 0 15px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 5px;
}

.trust-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Sections */
.section {
    padding: var(--spacing-3xl) 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-lg);
    color: var(--dark);
}

.section-subtitle {
    color: var(--primary);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: var(--font-sm);
    line-height: var(--line-height-normal);
    margin-bottom: var(--spacing-sm);
}

/* Cards */
.card {
    border: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.card-img-top {
    border-radius: 0;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 1.25rem;
    flex: 1;
}

.card-title {
    font-size: var(--font-lg);
    line-height: var(--line-height-tight);
    font-weight: var(--font-weight-semibold);
}

.card-text {
    font-size: var(--font-sm);
    line-height: var(--line-height-normal);
}

.btn-read-more {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.btn-read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.card:hover .btn-read-more::after {
    width: 100%;
}

.card:hover .btn-read-more i {
    transform: translateX(5px);
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    color: white;
}

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

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

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

.btn-light:hover {
    background: var(--light);
    color: var(--dark);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

/* Utilities */
.shadow-soft {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Unified Spacing Utilities */
.section-spacing { padding: var(--spacing-3xl) 0; }
.section-spacing-sm { padding: var(--spacing-xl) 0; }
.content-spacing { padding: var(--spacing-lg); }
.content-spacing-sm { padding: var(--spacing-md); }
.gap-content { margin-bottom: var(--spacing-xl); }
.gap-content-sm { margin-bottom: var(--spacing-lg); }
.gap-element { margin-bottom: var(--spacing-md); }
.gap-element-sm { margin-bottom: var(--spacing-sm); }

/* Unified Typography Utilities */
.text-base { 
    font-size: var(--font-base); 
    line-height: var(--line-height-normal); 
}
.text-sm { 
    font-size: var(--font-sm); 
    line-height: var(--line-height-normal); 
}
.text-lg { 
    font-size: var(--font-lg); 
    line-height: var(--line-height-relaxed); 
}
.text-lead { 
    font-size: var(--font-xl); 
    line-height: var(--line-height-relaxed); 
    font-weight: var(--font-weight-medium);
}

.font-normal { font-weight: var(--font-weight-normal); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }

.leading-tight { line-height: var(--line-height-tight); }
.leading-normal { line-height: var(--line-height-normal); }
.leading-relaxed { line-height: var(--line-height-relaxed); }

/* Breadcrumb */
.bg-breadcrumb {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 2rem 0;
    min-height: auto;
}

.bg-breadcrumb .container {
    max-width: 900px;
    text-align: center;
}

.bg-breadcrumb nav {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.bg-breadcrumb h1,
.bg-breadcrumb h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    justify-content: center;
    display: flex;
}

.breadcrumb-item {
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Article Content Styles */
.article-content {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.article-meta {
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--light);
}

.article-meta span {
    font-size: 0.95rem;
}

.article-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-intro {
    font-size: var(--font-xl);
    line-height: var(--line-height-relaxed);
    color: var(--gray);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0;
    padding-bottom: var(--spacing-sm);
    border-bottom: none;
}

.article-intro p {
    margin-bottom: 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.article-intro strong {
    color: var(--dark);
    font-weight: var(--font-weight-semibold);
}

.article-body {
    font-size: var(--font-base);
    line-height: var(--line-height-normal);
    color: var(--dark);
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
    color: var(--dark);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

/* Pierwszy nagłówek bezpośrednio po intro - mniejszy odstęp */
.article-intro + h1,
.article-intro + h2,
.article-intro + h3,
.article-intro + h4,
.article-intro + h5,
.article-intro + h6,
.article-intro ~ h1:first-of-type,
.article-intro ~ h2:first-of-type,
.article-intro ~ h3:first-of-type {
    margin-top: var(--spacing-sm);
}

.article-body h1 { font-size: 2.5rem; }
.article-body h2 { font-size: 2rem; }
.article-body h3 { font-size: 1.75rem; }
.article-body h4 { font-size: 1.5rem; }
.article-body h5 { font-size: 1.25rem; }
.article-body h6 { font-size: 1.1rem; }

.article-body p {
    margin-bottom: 1.25rem;
}

.article-body ul,
.article-body ol {
    margin-top: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    padding-left: 2rem;
    line-height: var(--line-height-normal);
}

.article-body li {
    margin-bottom: 0.25rem;
    line-height: var(--line-height-normal);
}

.article-body a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-body a:hover {
    color: var(--secondary);
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.article-body blockquote {
    border-left: 4px solid var(--primary);
    padding-left: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    font-style: italic;
    color: var(--gray);
}

.article-body code {
    background: var(--light);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.9em;
    color: var(--dark);
}

.article-body pre {
    background: var(--light);
    padding: var(--spacing-md);
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: var(--spacing-md) 0;
}

.article-body pre code {
    background: transparent;
    padding: 0;
}

.article-body table {
    width: 100%;
    margin: var(--spacing-md) 0;
    border-collapse: collapse;
}

.article-body table th,
.article-body table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
}

.article-body table th {
    background: var(--light);
    font-weight: 600;
}

.article-footer {
    margin-top: var(--spacing-xl);
}

/* CTA Box */
.cta-box {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.cta-box h3 {
    font-weight: 700;
    color: white;
}

.cta-box .btn-light {
    background: white;
    color: var(--primary);
    font-weight: 600;
    border: none;
}

.cta-box .btn-light:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Page Styles */
.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item p {
    color: var(--dark);
}

.contact-item a {
    color: var(--dark);
}

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

.contact-form {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control,
.contact-form .form-floating > label {
    border-radius: 0.5rem;
}

.map-container {
    position: relative;
    overflow: hidden;
}

/* About Page Styles */
.feature-box {
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
}

.feature-icon {
    display: inline-block;
}

.stats-card {
    transition: all 0.3s ease;
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.stats-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.value-item {
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(5px);
}

.value-icon {
    flex-shrink: 0;
}

.about-image img {
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Search Modal Fixes */
#searchModal .modal-content {
    background: #ffffff;
}

#searchModal .modal-body {
    background: #f8f9fa;
}

#searchModal .text-secondary {
    color: #6c757d !important;
}

#searchModal .input-group-text {
    background: white;
    border-right: none;
}

#searchModal #searchInput {
    border-left: none;
    background: white;
}

#searchModal #searchInput:focus {
    border-left: none;
    box-shadow: none;
}

#searchModal .input-group:focus-within .input-group-text {
    border-color: #86b7fe;
}

/* Mega Menu Styles */
.mega-menu {
    left: 0;
    right: 0;
    margin-top: 0;
    border-radius: 0;
}

.mega-menu .dropdown-item {
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.9rem;
}

.mega-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary);
    transform: translateX(5px);
}

.mega-menu h6 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-toggle::after {
    margin-left: 0.3rem;
}

/* Top Bar Styles */
.top-bar {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.top-bar-link {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.top-bar-link i {
    font-size: 1rem;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

body {
    padding-top: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .mega-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0;
    }
    
    .mega-menu .row {
        padding: 0 !important;
    }
    
    .mega-menu h6 {
        margin-top: 1rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero-new {
        padding: 40px 0 30px;
    }
    
    .hero-new h1 {
        font-size: 2.5rem;
    }
    
    .hero-new .lead {
        font-size: 1.1rem;
    }
    
    .hero-cta-primary, 
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .trust-bar {
        padding: var(--spacing-md) 0;
    }
    
    .trust-item {
        margin-bottom: var(--spacing-md);
    }
    
    /* Sections */
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: var(--line-height-tight);
    }
    
    /* Cards */
    .card-title {
        font-size: var(--font-lg);
        line-height: var(--line-height-tight);
        margin-bottom: var(--spacing-xs) !important;
    }
    
    .card-text {
        font-size: var(--font-sm);
        line-height: var(--line-height-normal);
        margin-bottom: var(--spacing-xs) !important;
    }
    
    .card-body {
        padding: var(--spacing-sm);
    }
    
    /* Breadcrumb */
    .bg-breadcrumb {
        padding: var(--spacing-md) 0;
    }
    
    .bg-breadcrumb h1,
    .bg-breadcrumb h4 {
        font-size: 1.75rem;
    }
    
    .bg-breadcrumb nav {
        font-size: 0.8rem;
    }
    
    /* Article */
    .article-content {
        padding: var(--spacing-md);
    }
    
    .article-intro {
        font-size: var(--font-lg);
        line-height: var(--line-height-relaxed);
    }
    
    .article-body {
        font-size: var(--font-base);
        line-height: var(--line-height-normal);
    }
    
    .article-body h1 { 
        font-size: 2rem; 
        line-height: var(--line-height-tight); 
    }
    .article-body h2 { 
        font-size: 1.75rem; 
        line-height: var(--line-height-tight); 
    }
    .article-body h3 { 
        font-size: 1.5rem; 
        line-height: var(--line-height-tight); 
    }
    .article-body h4 { 
        font-size: 1.25rem; 
        line-height: var(--line-height-tight); 
    }
    
    /* CTA */
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    /* Stats */
    .stats-card h3 {
        font-size: 2rem;
    }
    
    .stats-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Top bar */
    .top-bar {
        font-size: 0.75rem;
    }
    
    .top-bar-link i {
        font-size: 0.9rem;
    }
    
    /* Spacing utilities mobile */
    .section-spacing { padding: var(--spacing-xl) 0; }
    .section-spacing-sm { padding: var(--spacing-lg) 0; }
    .content-spacing { padding: var(--spacing-md); }
    .content-spacing-sm { padding: var(--spacing-sm); }
}

/* About Page Specific Styles */
.about-intro-lead {
    color: var(--gray);
}

.about-stats-text {
    color: var(--gray);
}

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

.about-feature-text {
    color: var(--gray);
}

.about-brand-text {
    color: var(--dark);
    font-size: 1.125rem;
}

.about-brand-name {
    font-size: 1.125rem;
}

.about-timeline-text {
    color: var(--dark);
}

.about-review-rating {
    color: var(--dark);
    font-size: 1rem;
}

.about-review-text {
    color: var(--dark);
}

/* About Page Icons */
.about-icon-brand {
    font-size: 8rem;
    color: var(--primary);
}

.about-icon-brand-other {
    font-size: 8rem;
    color: #999;
}

.about-icon-check {
    font-size: 1.5rem;
    color: var(--primary);
}

.about-icon-star {
    color: #fbbf24;
}

/* About Page - Kim jestesmy box text */
.about-intro-text {
    font-size: 1.0625rem;
    line-height: 1.5;
    color: var(--dark);
}
/* Cookie Banner */
#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.98);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

#cookieBanner.show {
    display: block;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#cookieBanner .cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

#cookieBanner .cookie-text {
    flex: 1;
    min-width: 250px;
}

#cookieBanner .cookie-text p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

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

#cookieBanner .cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

#cookieBanner .btn-accept-cookies {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

#cookieBanner .btn-accept-cookies:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

#cookieBanner .btn-decline-cookies {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

#cookieBanner .btn-decline-cookies:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    #cookieBanner .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    #cookieBanner .cookie-buttons {
        width: 100%;
    }
    
    #cookieBanner .cookie-buttons button {
        flex: 1;
    }
}

/* ============================================
   FLOATING CTA BUTTON - Zleć naprawę
   ============================================ */

.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: floatPulse 3s ease-in-out infinite;
}

.floating-cta .btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.floating-cta .btn i {
    font-size: 1.25rem;
}

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

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-cta .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .floating-cta .btn-text {
        display: none;
    }
    
    .floating-cta .btn {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    
    .floating-cta .btn i {
        margin: 0;
        font-size: 1.5rem;
    }
}

/* Hide on scroll down, show on scroll up */
.floating-cta.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100px);
}

.floating-cta {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
