:root {
    --primary-color: #0066cc;
    --secondary-color: #f8f9fa;
    --dark-bg: #1a1a1a;
    --text-gradient: linear-gradient(45deg, #0d6efd, #0dcaf0);
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(33, 37, 41, 0.95) !important;
}

.hero-section {
    background: #ffffff;
    padding-top: 180px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

/* Globalny offset pre vsetky podstranky (kompenzacia fixneho menu) */
.page-offset {
    margin-top: 90px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.hero-img {
    transition: transform 0.3s ease;
    /* Removed border for cleaner look on white bg */
}

.hero-img:hover {
    transform: translateY(-5px);
}

/* Feature Boxes */
.feature-box {
    padding: 30px;
    transition: all 0.3s ease;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Feature List */
.feature-list li {
    font-size: 1.1rem;
    padding: 8px 0;
}

/* Cards Hover Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* Gallery */
.swiper {
    width: 100%;
    padding-bottom: 50px;
}

.swiper-slide {
    height: auto;
}

.gallery-item {
    aspect-ratio: 4 / 3;
    height: auto;
    cursor: pointer;
    border-radius: 10px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

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

/* Language Switcher Hover Fix */
.dropdown-item:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner .text-white-50 {
    font-size: 0.9rem;
}

.cookie-banner .btn {
    border-radius: 8px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .cookie-banner .d-flex {
        width: 100%;
    }

    .cookie-banner .btn {
        flex: 1;
    }
}

/* Unified Navigation Dropdown */
.custom-dropdown {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 0 !important;
    overflow: hidden;
    margin-top: 10px !important;
}

.custom-dropdown .dropdown-item {
    transition: all 0.2s ease;
    padding: 10px 20px;
}

.custom-dropdown .dropdown-item:hover {
    padding-left: 25px;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #212529 0%, #343a40 100%);
}

.animated {
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation-name: fadeIn;
}

#cart-count {
    font-size: 0.65rem;
    padding: 0.35em 0.6em;
    border: 2px solid #212529;
}

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