/* Modern Digital Presentation Styles */

:root {
    --primary-color: #1abc9c;
    --primary-glow: #2ecc71;
    --primary-dark: #16a085;
    --secondary-color: #3498db;
    --accent-color: #9b59b6;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --gradient-primary: linear-gradient(135deg, #1abc9c 0%, #3498db 100%);
    --gradient-glow: linear-gradient(135deg, rgba(26, 188, 156, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    --shadow-glow: 0 0 40px rgba(26, 188, 156, 0.2);
    --shadow-elegant: 0 20px 60px -20px rgba(26, 188, 156, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: #ffffff;
}

body.cookies-settings-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

html.cookies-settings-open {
    overflow: hidden !important;
}

/* Modern Navbar */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(26, 188, 156, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.1) rotate(-5deg);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

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

/* Modern Dropdown Enhancements */
.no-caret::after {
    display: none !important;
}

.dropdown-icon {
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.dropdown-menu {
    border-radius: 1.25rem !important;
    padding: 0.75rem !important;
    margin-top: 10px !important;
    min-width: 240px !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.dropdown-item {
    border-radius: 0.75rem !important;
    transition: all 0.2s ease !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(26, 188, 156, 0.08) !important;
    transform: translateX(5px);
    outline: none;
}

.dropdown-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(26, 188, 156, 0.1);
    color: var(--primary-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dropdown-item-icon:has(img) {
    background: transparent !important;
}

.dropdown-item:hover .dropdown-item-icon:not(:has(img)),
.dropdown-item:focus .dropdown-item-icon:not(:has(img)) {
    background: var(--gradient-primary);
    color: white;
}

.dropdown-item:hover .dropdown-item-icon:has(img),
.dropdown-item:focus .dropdown-item-icon:has(img) {
    background: transparent !important;
}

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

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

.extra-small {
    font-size: 0.7rem;
}

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

.animate-slide-up {
    animation: slideUpIn 0.3s ease-out forwards;
}

/* Hover support for desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0 !important;
        padding-top: 15px !important;
    }
    
    .nav-item.dropdown {
        padding-bottom: 10px;
        margin-bottom: -10px;
    }
}

/* Language Dropdown */
#langDropdown {
    transform: none !important;
}

.dropdown-menu[aria-labelledby="langDropdown"] {
    min-width: 80px !important;
    padding: 0.5rem !important;
}

.dropdown-menu[aria-labelledby="langDropdown"] .dropdown-item {
    padding: 0.5rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Section - Ultra Modern */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 50%, #e0f2fe 100%);
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-bottom: 60px;
}

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

.hero-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    animation: float 8s ease-in-out infinite 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.6;
    }
}

.hero-gradient {
    height: 200px;
    background: linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0));
    z-index: 2;
    pointer-events: none;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-section .text-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Modern Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-outline-primary:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.3);
}

.btn-outline-primary:hover::before {
    width: 100%;
}

/* Services Section - Enhanced */
#sluzby {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

#sluzby::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.2;
}

/* Modern Service Cards */
.service-card-modern {
    background: #ffffff;
    border: 2px solid #f1f5f9;
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.03) 0%, rgba(52, 152, 219, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 1.5rem;
    z-index: 0;
}

.service-card-modern:hover::before {
    opacity: 1;
}

.service-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px -20px rgba(26, 188, 156, 0.25);
    border-color: rgba(26, 188, 156, 0.2);
}

.service-card-modern > * {
    position: relative;
    z-index: 1;
}

/* Modern Icon Wrapper */
.icon-wrapper-modern {
    position: relative;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-bg-modern {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 1.25rem;
    transform: rotate(-5deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.25);
}

.icon-bg-secondary {
    background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.25);
}

.icon-bg-accent {
    background: linear-gradient(135deg, #9b59b6 0%, #e74c3c 100%);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.25);
}

.icon-svg {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card-modern:hover .icon-wrapper-modern {
    transform: scale(1.1);
}

.service-card-modern:hover .icon-bg-modern {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 12px 35px rgba(26, 188, 156, 0.35);
}

.service-card-modern:hover .icon-bg-secondary {
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.35);
}

.service-card-modern:hover .icon-bg-accent {
    box-shadow: 0 12px 35px rgba(155, 89, 182, 0.35);
}

.service-card-modern:hover .icon-svg {
    transform: scale(1.1);
}

/* Section Headings */
section h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Product Cards Enhanced */
.product-card-modern {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05) !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(26, 188, 156, 0.15) !important;
    border-color: rgba(26, 188, 156, 0.2) !important;
}

.product-title-modern {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.btn-product-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
    transition: all 0.3s ease;
    border: none;
    margin-top: auto;
}

.btn-product-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.4);
    color: white;
}

/* Reference Section Styles */
.reference-card-modern {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reference-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.reference-image-wrapper-modern {
    width: 100%;
    height: 200px;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.reference-image-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Why Us Section Icons */
#proc-spolupracovat .reference-item-modern {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

#proc-spolupracovat .reference-item-modern:hover {
    background: #fcfdfd;
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

#proc-spolupracovat .highlight-icon-wrapper-modern {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
}

.highlight-icon-wrapper-modern {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.product-highlights-modern {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(26, 188, 156, 0.1);
}

.highlight-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-content-modern {
    flex: 1;
    color: #334155;
    line-height: 1.6;
    padding-top: 0.25rem;
}

.highlight-content-modern strong {
    color: #1e293b;
    font-weight: 700;
}

/* Fix for section transitions */
section {
    position: relative;
    z-index: 1;
}

.bg-light {
    background-color: #f8fafc !important;
}

/* Contact Section - Modern */
#kontakt {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    transition: left 0.4s ease;
    z-index: 0;
}

.contact-item:hover::before {
    left: 0;
}

.contact-item:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: var(--shadow-elegant);
    border-color: rgba(26, 188, 156, 0.3);
}

.contact-item > * {
    position: relative;
    z-index: 1;
}

.contact-icon {
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-primary) !important;
}

.contact-item:hover .contact-icon svg {
    color: white !important;
}

/* Form Styling */
.form-control {
    border: 2px solid rgba(13, 148, 136, 0.1);
    border-radius: 0.75rem;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 188, 156, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #94a3b8;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Badge */
.badge {
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.badge-modern-custom {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

/* Utility */
.max-w-2xl {
    max-width: 42rem;
}

.z-2 {
    z-index: 2;
}

/* Scroll Animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        min-height: 90vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Smooth scroll - native browser implementation */
html {
    scroll-behavior: smooth;
}

/* Section spacing and anchor offset */
section, [id] {
    scroll-margin-top: 100px;
}

.page-section {
    padding-top: 120px !important;
}

/* Stats in hero */
.hero-stats {
    border-top: 1px solid rgba(26, 188, 156, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

/* Ripple effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Form enhancements */
.form-label {
    color: #334155;
    margin-bottom: 0.5rem;
}

.form-control-lg {
    font-size: 1rem;
    padding: 1rem 1.25rem;
}

.form-control.has-value {
    border-color: var(--primary-color);
}

.focused .form-label {
    color: var(--primary-color);
}

/* Footer */
.hover-underline {
    position: relative;
    transition: color 0.3s ease;
}

.hover-underline:hover {
    color: var(--primary-color) !important;
}

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

.hover-underline:hover::after {
    width: 100%;
}

/* Footer - Professional Dark Design */
.footer-modern {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 188, 156, 0.3), transparent);
}

.footer-brand-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-modern .text-white {
    color: #ffffff !important;
}

.footer-modern .text-primary {
    color: var(--primary-color) !important;
}

/* Additional utilities */
.blur-5 {
    filter: blur(80px);
}

.w-64 {
    width: 16rem;
}

.fs-2 {
    font-size: 1.5rem;
}

.fs-4 {
    font-size: 1.25rem;
}

.fs-5 {
    font-size: 1.125rem;
}

.display-1 {
    font-size: clamp(3rem, 10vw, 6rem);
}

.display-3 {
    font-size: clamp(2rem, 6vw, 3.5rem);
}


.rounded-5 {
    border-radius: 1.5rem;
}

.shadow-lg {
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15) !important;
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
    background-size: 1000px 100%;
}

/* Glassmorphism effect */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Gradient text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cookies Banner */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    transform: translateZ(0);
    will-change: transform;
}

.cookies-banner-basic {
    padding: 0;
}

.cookies-banner-settings {
    padding: 1rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
}

.cookie-setting-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-setting-item .form-check-input {
    width: 3rem;
    height: 1.5rem;
    cursor: pointer;
}

.cookie-setting-item .form-check-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

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

.cookies-banner.hide {
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
}

.cookies-banner a {
    color: #fff;
    text-decoration: underline;
}

.cookies-banner a:hover {
    color: #1abc9c;
}
