        :root {
            --alchem-green: #62BB46;
            --alchem-dark: #1a1a1a;
            --alchem-light: #f8f9fa;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: linear-gradient(135deg, #fff 0%, #f3f3f3 100%);
        }

        /* Nadpisy - Titillium Web */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Titillium Web', sans-serif;
        }

        /* Navigation */
        .navbar {
            padding: 15px 0;
            background: rgba(255,255,255,0.95) !important;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

        .navbar-brand svg {
            height: 65px;
            width: auto;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
            transition: transform 0.15s ease-in-out;
        }

        .nav-link {
            font-weight: 500;
            color: var(--alchem-dark) !important;
            margin: 10px 10px !important;
            padding: 0;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--alchem-green) !important;
        }
        .nav-link-login.active,
        .nav-item.active .nav-link {
            text-decoration: underline;
        }

        /* Navbar Actions - Přihlášení a Poptávka */
        .navbar-actions {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-left: auto;
        }

        .nav-link-login {
            font-weight: 500;
            color: var(--alchem-dark) !important;
            padding: 10px 15px !important;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-link-login:hover {
            color: var(--alchem-green) !important;
        }

        .btn-poptavka {
            background-color: var(--alchem-green);
            color: white;
            padding: 10px 25px;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(98, 187, 70, 0.3);
        }

        .btn-poptavka:hover {
            background-color: #4fa035;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(98, 187, 70, 0.4);
        }

        /* Hero Section */
        .hero-section {
            min-height: 90vh;
            
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--alchem-dark);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-title strong {
            color: var(--alchem-green);
        }

        .hero-text {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .btn-alchem {
            background-color: var(--alchem-green);
            color: white;
            padding: 15px 40px;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(98, 187, 70, 0.3);
        }

        .btn-alchem:hover {
            background-color: #4fa035;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(98, 187, 70, 0.4);
        }

        .hero-image {
            position: relative;
            width: 120%;
            text-align: center;
        }

        .hero-image img,
        .hero-image figure {
            max-width: 100%;
            height: auto;
        }

        .corner-plant {
            position: absolute;
            top: 0;
            left: 0;
            max-width: 200px;
            z-index: 9998;
        }

        .svg-container {
            max-width: 100%;
            position: relative;
            margin-top: 30px;
        }

        figure.svg-figure {
            -webkit-clip-path: url(#svg-path);
            clip-path: url(#svg-path);
            position: relative;
            overflow: hidden;
            width: 100%;
            aspect-ratio: 1 / 1;
            margin: 0 auto;
        }

        figure.svg-figure img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        svg:not(:root) {
            overflow: hidden;
        }

       


        


        /* Feature Cards */
        .feature-section {
            padding: 0 0 80px 0;
        }

        .feature-card {
            position: relative;
            border: none;
            border-radius: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            aspect-ratio: 1/1;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.25);
        }

        .feature-card .card-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            position: absolute;
            top: 0;
            left: 0;
            overflow: hidden;
            border-radius: 20px;
        }

        .feature-card .card-leafs {
            position: absolute;
            z-index: 1;
            bottom: -78px;
            right: -55px;
            width: 100%;
            height: 100%;
        }

        .feature-card .card-body {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
            padding: 30px 20px 20px;
            color: white;
            border-radius: 0 0 20px 20px;
        }

        .feature-card .card-title {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 5px;
            font-family: 'Titillium Web', sans-serif;
        }

        .feature-card .view-link {
            color: white;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .feature-card .view-link::after {
            content: '';
            display: block;
            width: 30px;
            height: 2px;
            background: var(--alchem-green);
            transition: width 0.3s ease;
        }

        .feature-card:hover .view-link::after {
            width: 50px;
        }

        /* Feature card heights - progressive increase */
        .feature-card--1 {
            aspect-ratio: 1/1;
        }

        .feature-card--2 {
            margin-top: -50px;
        }

        .feature-card--3 {
            margin-top: -100px;
        }
        
        .feature-card--3 .view-link,
        .feature-card--3 .card-body {
            color:#1a1a1a;
        }

        /* Responsive - reset on mobile */
        @media (max-width: 767px) {
            .feature-card--2,
            .feature-card--3 {
                margin-top: 0;
            }
        }

        .feature-card--hobby {
            background: var(--alchem-green);
        }

        /* About Section */
        .about-section {
            margin-top: 180px;
            padding: 80px 0 0;
            background-color: #eff7ea;
        }

        .about-content {
            padding: 0px 0 80px;
        }

        .about-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--alchem-dark);
            margin-bottom: 20px;
        }

        .about-title span {
            color: var(--alchem-green);
        }

        .about-text {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .about-image {
            position: relative;
        }

        .about-image img.person {
            margin-top: -275px;
            max-width: 100%;
            height: auto;
        }

        .about-image img.person-leafs {
            position: absolute;
            right: 0;
            bottom: 0;
            max-width: 100%;
            height: auto;
        }

        /* Partners Section */
        .partners-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }

        .partner-logo {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
            
        }

        .partner-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        .partner-logo img {
            max-height: 80px;
            max-width: 150px;
            border-radius: 6px;
        }

        /* Contact CTA Section */
        .contact-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            background-image: url('/static/alchem.sk/img/field.jpg?876f5372b7c9');
            background-size: cover;
            background-position: center bottom;
            background-repeat: no-repeat;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--alchem-green) 0%, rgba(79, 160, 53, 0.9) 100%);;
            z-index: 1;
        }

        .contact-section::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            z-index: 2;
        }

        .contact-section .container {
            position: relative;
            z-index: 3;
        }

        .contact-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

        .contact-title span {
            color: #1a1a1a;
        }

        .contact-subtitle {
            color: rgba(255,255,255,0.9);
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn-contact {
            background-color: white;
            color: var(--alchem-green);
            padding: 15px 50px;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-contact:hover {
            background-color: var(--alchem-dark);
            color: white;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background-color: var(--alchem-dark);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--alchem-green);
        }

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

        .footer-links li {
            margin-bottom: 10px;
        }

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

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

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 40px;
        }

        .footer-logo svg {
            height: 40px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            justify-content: flex-end
        }

        .social-icons a {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
            font-size: 2rem;
            border-radius: 6px;
        }

        .social-icons a:hover {
            background: var(--alchem-green);
            color: white;
        }

        /* Mobile Menu Button */
        .navbar-toggler {
            border: none;
            padding: 10px;
        }
        


        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: none;
            width: 30px;
            height: 20px;
            position: relative;
        }


        .navbar-toggler-icon span {
            top: 50%;
            transform: translateY(-50%);
        }

        .navbar-toggler-icon::after {
            bottom: 0;
        }

        /* ==================== ANIMATIONS ==================== */
        
        /* Animation keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        /* Animation classes - hidden by default, visible on scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Left animation */
        .animate-on-scroll.animate-left {
            transform: translateX(-30px);
        }
        
        .animate-on-scroll.animate-left.is-visible {
            transform: translateX(0);
        }
        
        /* Right animation */
        .animate-on-scroll.animate-right {
            transform: translateX(30px);
        }
        
        .animate-on-scroll.animate-right.is-visible {
            transform: translateX(0);
        }
        
        /* Scale animation */
        .animate-on-scroll.animate-scale {
            transform: scale(0.8);
        }
        
        .animate-on-scroll.animate-scale.is-visible {
            transform: scale(1);
        }
        
        /* Animation delays for staggered effects */
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }
        .delay-6 { transition-delay: 0.6s; }
        .delay-7 { transition-delay: 0.7s; }
        .delay-8 { transition-delay: 0.8s; }
        
        /* Animations (additional) */
        .animate-fade-in {
            animation: fadeInUp 0.8s ease forwards;
        }

        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                /* font-size: 2.5rem; */
            }

            .hero-section {
                min-height: auto;
                padding: 150px 0 80px;
            }

            .about-section {
                padding: 60px 0;
            }

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

            /* Mobilní menu - zarovnání prvků */
            .navbar-actions {
                margin-left: 5px;
                padding: 15px 0;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                
                gap: 10px;
            }

            .nav-link-login {
                padding: 10px 15px !important;
            }

            .btn-poptavka {
                padding: 10px 20px;
            }

            .hero-image {
                margin-top: 30px;
                display: none;
            }

            .corner-plant {
                max-width: 120px;
            }

            .homepage-hero figure.svg-figure {
                max-height: 350px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                /* font-size: 2rem; */
            }

            .hero-text {
                /* font-size: 1rem; */
            }

            .feature-card {
                margin-bottom: 20px;
            }

            

            .corner-plant {
                max-width: 80px;
                top: -10px;
            }

            .homepage-hero figure.svg-figure {
                aspect-ratio: 1 / 1;
                max-height: 300px;
            }
        }

        /* ==================== SERVICE PAGE STYLES ==================== */

        /* Service Hero Section */
        .service-hero {
            min-height: 90vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-top: 100px;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

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

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
        }

        .service-hero .hero-content {
            position: relative;
            z-index: 2;
        }

        .service-hero .hero-visual {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            background: var(--alchem-green);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .blob-shape {
            position: relative;
            width: 100%;
            max-width: 450px;
            margin: 0 auto;
            transform-origin: center center;
        }

        .hero-visual {
            transform-origin: center center;
        }

        .blob-shape img {
            width: 100%;
            height: auto;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        /* Commodities Section */
        .commodities-section {
            padding: 100px 0;
            background: transparent;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--alchem-dark);
            margin-bottom: 15px;
        }

        .section-title span {
            color: var(--alchem-green);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Kontajner komodity */
        .commodity-card {
            position: relative;
            overflow: hidden;
            min-height: 300px; /* Upravte podľa potreby */
            display: flex;
            flex-direction: column;
            justify-content: flex-end; /* Text sa posunie nad spodný prechod */
            padding: 20px;
            border-radius: 8px; /* Voliteľné */
            color: #ffffff; /* Biely text pre lepší kontrast na tmavom pozadí */
        }

        /* Pozadie s obrázkom */
        .commodity-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/static/alchem.sk/style/vas-obrazok.jpg'); /* Cesta k obrázku */
            background-size: cover;
            background-position: center;
            z-index: 1;
            transition: transform 0.3s ease; /* Pekný efekt pri hoveri */
        }

        /* Overlay s prechodom (čierna -> transparentná) */
        .commodity-card::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Prechod: Čierna dole (0.8 opacity) do priehľadnej hore */
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
            z-index: 2;
        }

        /* Aby obsah (text) bol nad pozadím a overlayom */
        .commodity-card > * {
            position: relative;
            z-index: 3;
        }

        /* Voliteľný hover efekt */
        .commodity-card:hover::before {
            transform: scale(1.05);
        }

        .commodity-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--alchem-green) 0%, #4fa035 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .commodity-icon i {
            font-size: 2rem;
            color: white;
        }

        .commodity-title {
            font-size: 2rem;
            font-weight: 600;
            color: white;
            margin-bottom: 15px;
            font-family: 'Titillium Web', sans-serif;
        }

        .commodity-text {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        /* Alternating Content Sections */
        .alt-section {
            padding: 100px 0;
            background: transparent;
        }

        .alt-section--reverse {
            background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
        }

        .alt-content {
            padding: 40px;
        }

        .content-badge {
            display: inline-block;
            background: rgba(98, 187, 70, 0.1);
            color: var(--alchem-green);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .alt-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--alchem-dark);
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .alt-title span {
            color: var(--alchem-green);
        }

        .alt-text {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

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

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 1rem;
            color: #444;
        }

        .feature-list li i {
            color: var(--alchem-green);
            font-size: 1.3rem;
        }

        .alt-image {
            position: relative;
            padding: 20px;
        }

        .rounded-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }

        .rounded-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

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

        .image-decoration {
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: var(--alchem-green);
            opacity: 0.1;
            border-radius: 50%;
            z-index: -1;
        }

        /* Process Section - Timeline Style */
        .process-section {
            padding: 120px 0;
            background: transparent;
        }

        .process-timeline {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 12px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--alchem-green), #8BC34A);
        }

        .process-timeline-item {
            display: inline-block;
            width: 24%;
            text-align: center;
            position: relative;
            vertical-align: top;
            padding: 0 15px;
        }

        .timeline-dot {
            width: 24px;
            height: 24px;
            background: var(--alchem-green);
            border-radius: 50%;
            margin: 0 auto 40px;
            position: relative;
            z-index: 2;
            box-shadow: 0 0 0 8px white, 0 0 0 10px var(--alchem-green);
            transition: all 0.3s ease;
        }

        .process-timeline-item:hover .timeline-dot {
            transform: scale(1.2);
            box-shadow: 0 0 0 10px white, 0 0 0 12px var(--alchem-green);
        }

        .timeline-content {
            padding: 0 10px;
        }

        .timeline-number {
            display: block;
            font-size: 3rem;
            font-weight: 700;
            color: var(--alchem-green);
            font-family: 'Titillium Web', sans-serif;
            margin-bottom: 15px;
            line-height: 1;
        }

        .timeline-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--alchem-dark);
            margin-bottom: 15px;
        }

        .timeline-content p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--alchem-green) 0%, #4a9d2f 100%);
            position: relative;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            display: block;
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            font-family: 'Titillium Web', sans-serif;
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            color: rgba(255,255,255,0.9);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Section Wave Transition */
        .section-wave {
            position: relative;
        }

        .section-wave::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            right: 0;
            height: 50px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50'%3E%3Cpath fill='%23fafafa' d='M0,25 C360,50 1080,0 1440,25 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center top;
            background-size: cover;
        }

        /* Testimonials Section - Simplified */
        .testimonials-section {
            padding: 80px 0;
            background: #fafafa;
        }

        .testimonial-card-simple {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            height: 100%;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }

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

        .testimonial-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--alchem-green) 0%, #8BC34A 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .testimonial-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .testimonial-text-simple {
            font-size: 1rem;
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author-simple {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .testimonial-author-simple .author-name {
            font-weight: 600;
            color: var(--alchem-dark);
            font-size: 1rem;
        }

        .testimonial-author-simple .author-role {
            font-size: 0.85rem;
            color: #888;
        }

        /* FAQ Section - Bootstrap Accordion */
        .faq-section {
            padding: 80px 0;
            background: white;
        }

        .faq-section .accordion-item {
            background: #fafafa;
            border-radius: 12px !important;
            margin-bottom: 12px;
            border: 1px solid rgba(0,0,0,0.05);
            transition: box-shadow 0.3s ease;
            overflow: hidden;
        }

        .faq-section .accordion-item:hover {
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .faq-section .accordion-button {
            background: transparent;
            font-weight: 600;
            color: var(--alchem-dark);
            padding: 20px;
            font-size: 1rem;
            box-shadow: none;
            border-radius: 12px !important;
        }

        .faq-section .accordion-button:not(.collapsed) {
            background: transparent;
            color: var(--alchem-dark);
            box-shadow: none;
        }

        .faq-section .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2362BB46'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .faq-section .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2362BB46'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .faq-section .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }

        .faq-section .accordion-body {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
            padding: 0 20px 20px 20px;
        }

        @media (max-width: 768px) {
            .testimonial-card-simple {
                padding: 25px 20px;
            }
        }

        /* Contact Page Styles */
        .contact-info-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
        }

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

        .contact-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--alchem-green) 0%, #8BC34A 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .contact-icon i {
            font-size: 2rem;
            color: white;
        }

        .contact-info-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--alchem-dark);
            margin-bottom: 15px;
        }

        .contact-info-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .contact-form-wrapper {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .contact-form-wrapper .form-control,
        .contact-form-wrapper .form-select {
            border: 2px solid #eee;
            border-radius: 12px;
            padding: 15px;
        }

        .contact-form-wrapper .form-control:focus,
        .contact-form-wrapper .form-select:focus {
            border-color: var(--alchem-green);
            box-shadow: 0 0 0 3px rgba(98, 187, 70, 0.1);
        }

        .map-wrapper {
            background: white;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .business-hours-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .hours-grid {
            max-width: 400px;
            margin: 0 auto;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .hours-row .day {
            font-weight: 500;
            color: var(--alchem-dark);
        }

        .hours-row .hours {
            color: #666;
        }

        .hours-row.weekend .hours {
            color: var(--alchem-green);
            font-weight: 500;
        }

        /* Services Page Styles */
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            height: 100%;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--alchem-green) 0%, #8BC34A 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .service-icon i {
            font-size: 1.8rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--alchem-dark);
            margin-bottom: 15px;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-features li {
            display: flex;
            align-items: center;
            color: #555;
            font-size: 0.9rem;
            margin-bottom: 8px;
        }

        .service-features li i {
            color: var(--alchem-green);
            margin-right: 10px;
        }

        /* Why Us Section */
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .why-us-item {
            display: flex;
            gap: 15px;
        }

        .why-us-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--alchem-green) 0%, #8BC34A 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .why-us-icon i {
            font-size: 1.2rem;
            color: white;
        }

        .why-us-item h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--alchem-dark);
            margin-bottom: 5px;
        }

        .why-us-item p {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 0;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
        }

        .cta-card {
            background: linear-gradient(135deg, var(--alchem-green) 0%, #4a9d2f 100%);
            border-radius: 30px;
            padding: 50px;
            color: white;
        }

        .cta-card h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .cta-card p {
            opacity: 0.9;
            margin-bottom: 0;
        }

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

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

        /* Service Page Responsive */

        /* Service Page Responsive */
        @media (max-width: 991px) {
            .service-hero {
                min-height: auto;
                padding: 120px 0 60px;
            }

            .service-hero .hero-title {
                font-size: 2.5rem;
            }

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

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

            .blob-shape {
                max-width: 350px;
                margin-top: 40px;
            }

            /* Timeline responsive */
            .process-timeline::before {
                left: 20px;
                right: auto;
                top: 0;
                bottom: 0;
                width: 3px;
                height: 100%;
            }

            .process-timeline-item {
                display: block;
                width: 100%;
                text-align: left;
                padding-left: 60px;
                margin-bottom: 30px;
            }

            .timeline-dot {
                position: absolute;
                left: 11px;
                top: 0;
                margin: 0;
            }

            .horizontal-steps {
                flex-wrap: wrap;
            }

            .h-step {
                width: 45%;
                margin-bottom: 20px;
            }

            .h-step-arrow {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .alt-title {
                font-size: 1.8rem;
            }

            .commodity-card,
            .process-card {
                padding: 25px 20px;
            }

            .process-icon {
                width: 55px;
                height: 55px;
            }

            .process-icon i {
                font-size: 1.3rem;
            }

            .minimal-step {
                border-right: none;
                border-bottom: 1px solid #eee;
                padding: 30px 20px;
            }

            .minimal-step:last-child {
                border-bottom: none;
            }

            .h-step {
                width: 100%;
                max-width: 100%;
            }
        }

/* ═══════════════════════════════════════════
   KONTAKT PAGE STYLES - from kontakt.html
   ═══════════════════════════════════════════ */

/* CSS Variables extension */
:root {
    --contact-border-radius: 20px;
    --contact-shadow: 0 10px 40px rgba(0,0,0,0.08);
    --contact-shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --contact-transition: all 0.3s ease;
    --contact-bg-light: #f8f9fa;
}

/* Hero Section */
.contact-hero {
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.contact-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--alchem-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-hero .hero-title strong {
    color: var(--alchem-green);
}

.contact-hero .hero-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Base */
.kontakt-section {
    padding: 100px 0;
    background: white;
}

.kontakt-section:nth-child(even) {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--alchem-dark);
    margin-bottom: 15px;
}

.section-title span {
    color: var(--alchem-green);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--alchem-green);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* FAKTURAČNÉ ÚDAJE */
.billing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.billing-card {
    background: white;
    border-radius: var(--contact-border-radius);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--contact-shadow);
    transition: var(--contact-transition);
    height: 100%;
}

.billing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--contact-shadow-hover);
}

.billing-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--alchem-green) 0%, #4fa035 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.billing-icon i {
    font-size: 1.8rem;
    color: white;
}

.billing-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--alchem-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.billing-value {
    font-size: 1rem;
    color: var(--alchem-dark);
    line-height: 1.6;
    font-weight: 500;
}

.billing-value a {
    color: var(--alchem-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.billing-value a:hover {
    color: var(--alchem-green);
}

/* TÍM - TEAM CARDS */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: var(--contact-border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--contact-shadow);
    transition: var(--contact-transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--contact-shadow-hover);
}

.team-photo-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #e8f5e2 0%, #d4edda 100%);
    border: 4px solid white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--alchem-green);
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
}

.team-name {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--alchem-dark);
    margin-bottom: 5px;
}

.team-position {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--alchem-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.team-contact {
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.team-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.2s;
}

.team-contact-item:last-child {
    margin-bottom: 0;
}

.team-contact-item:hover {
    color: var(--alchem-green);
}

.team-contact-item i {
    font-size: 1rem;
    color: var(--alchem-green);
}

/* POBOČKY - BRANCH SECTION */
.branch-container {
    margin-bottom: 80px;
}

.branch-container:last-child {
    margin-bottom: 0;
}

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

.branch-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--alchem-dark);
    margin: 0;
}

/* Branch Box - Main Container */
.branch-box {
    background: white;
    border-radius: var(--contact-border-radius);
    box-shadow: var(--contact-shadow);
    overflow: hidden;
}

/* Branch Main Row - Info + Map */
.branch-main-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.branch-info-col {
    padding: 40px;
}

.branch-map-col {
    height: 100%;
    min-height: 400px;
}

.branch-map-col .google-map {
    height: 100%;
    min-height: 400px;
}

.branch-map-col .google-map iframe {
    height: 100%;
    min-height: 400px;
}

/* Branch Okresy Row - Full Width */
.branch-okresy-row {
    padding: 30px 40px;
    border-top: 1px solid #f0f0f0;
    background: #fafbfa;
}

.branch-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.branch-info-item:last-child {
    margin-bottom: 0;
}

.branch-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--alchem-green) 0%, #4fa035 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.branch-info-icon i {
    font-size: 1.3rem;
    color: white;
}

.branch-info-content {
    flex: 1;
}

.branch-info-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--alchem-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.branch-info-value {
    font-size: 1rem;
    color: var(--alchem-dark);
    line-height: 1.6;
    font-weight: 500;
}

.branch-info-value a {
    color: var(--alchem-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.branch-info-value a:hover {
    color: var(--alchem-green);
}

.branch-hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 20px;
}

.branch-hours-day {
    color: #888;
}

.branch-hours-time {
    color: var(--alchem-dark);
    font-weight: 600;
}

.gps-coords {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
}

.gps-coords:hover {
    background: var(--alchem-green);
    color: white;
}

.gps-coords i {
    font-size: 0.8rem;
}

/* Map Container */
.google-map {
    overflow: hidden;
    height: 300px;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Map in branch - rounded only top-right corner */
.branch-map-col .google-map {
    border-radius: 0 var(--contact-border-radius) 0 0;
    height: 100%;
}

/* KONTAKTNÝ FORMULÁR */
.kontakt-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-card {
    background: white;
    border-radius: var(--contact-border-radius);
    padding: 50px;
    box-shadow: var(--contact-shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--alchem-dark);
    margin-bottom: 10px;
    display: block;
}

.form-label span {
    color: var(--alchem-green);
}

.form-control,
.form-select {
    border: 2px solid #e8f5e2;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    color: var(--alchem-dark);
    background: white;
    transition: var(--contact-transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--alchem-green);
    box-shadow: 0 0 0 4px rgba(98, 187, 70, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #aaa;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background: var(--alchem-green);
    color: white;
    padding: 18px 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--contact-transition);
    box-shadow: 0 4px 15px rgba(98, 187, 70, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    background: #4fa035;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(98, 187, 70, 0.4);
}

/* BRANCH FILTER SECTION */
.branch-filter {
    background: white;
    border-radius: var(--contact-border-radius);
    padding: 30px;
    box-shadow: var(--contact-shadow);
    margin-bottom: 50px;
}

.branch-filter-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--alchem-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.branch-filter-title i {
    color: var(--alchem-green);
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    align-items: end;
}

.filter-separator {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 12px;
    text-align: center;
    white-space: nowrap;
}

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

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.filter-select,
.filter-input {
    border: 2px solid #e8f5e2;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: var(--alchem-dark);
    background: white;
    transition: var(--contact-transition);
}

.filter-select:focus,
.filter-input:focus {
    border-color: var(--alchem-green);
    box-shadow: 0 0 0 3px rgba(98, 187, 70, 0.1);
    outline: none;
}

.btn-geolocate {
    background: var(--alchem-green);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--contact-transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-geolocate:hover {
    background: #4fa035;
    transform: translateY(-2px);
}

.btn-geolocate i {
    font-size: 1.1rem;
}

.branch-hidden {
    display: none !important;
}

.branch-distance {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--alchem-green);
    font-weight: 600;
    margin-left: 10px;
}

.branch-okresy-row .branch-okresy-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--alchem-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.branch-okresy-row .branch-okresy-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.okres-badge {
    background: #f0f8ed;
    color: var(--alchem-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* RESPONSIVE STYLES for kontakt page */
@media (max-width: 1199px) {
    .billing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 991px) {
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }

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

    .branch-main-row {
        grid-template-columns: 1fr;
    }

    .branch-map-col .google-map {
        min-height: 300px;
    }

    .branch-map-col .google-map iframe {
        min-height: 300px;
    }

    .branch-header {
        justify-content: center;
    }

    .branch-info-col {
        padding: 40px;
    }

    .branch-okresy-row {
        padding: 25px;
    }

    .branch-header {
        padding: 0 0 15px 0;
    }
}

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

    .contact-hero {
        min-height: 50vh;
    }

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

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

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

    .branch-info-col {
        padding: 30px;
    }

    .branch-okresy-row {
        padding: 20px;
    }

    .branch-header {
        padding: 0 0 10px 0;
    }

    .branch-map-col .google-map {
        min-height: 250px;
    }

    .branch-map-col .google-map iframe {
        min-height: 250px;
    }

    .contact-form-card {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .contact-hero .hero-title {
        font-size: 1.8rem;
    }

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

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

    .filter-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .filter-separator {
        margin: 5px 0;
        text-align: center;
    }

    .team-card {
        padding: 30px 20px;
    }

    .billing-card {
        padding: 25px 20px;
    }
}


/* ================================================================
   UIK – Alchem UI Kit (ui.html)
   Čistý, vzdušný design vycházející z index.html / onas.html
   ================================================================ */

.uik { background: #f5f6f8; padding-top: 64px; }

/* --- Topbar --- */
.uik-topbar { position:fixed;top:0;left:0;right:0;z-index:9999;background:rgba(255,255,255,.97);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);box-shadow:0 1px 12px rgba(0,0,0,.06);padding:14px 0; }
.uik-topbar__brand { font-family:'Titillium Web',sans-serif;font-weight:700;font-size:1.25rem;color:var(--alchem-dark);text-decoration:none; }
.uik-topbar__brand span { color:var(--alchem-green);font-weight:400; }
.uik-topbar__pills { display:flex;gap:4px; }
.uik-pill { display:inline-block;padding:5px 14px;border-radius:50px;font-size:.8rem;font-weight:500;color:#555;text-decoration:none;transition:all .2s; }
.uik-pill:hover,.uik-pill.active { background:var(--alchem-green);color:#fff; }

/* --- Header --- */
.uik-header { padding:70px 0 50px;background:linear-gradient(135deg,#fff 0%,#eef7eb 100%); }
.uik-header__badge { display:inline-block;padding:6px 18px;background:rgba(98,187,70,.1);color:var(--alchem-green);border-radius:50px;font-size:.82rem;font-weight:600;margin-bottom:18px; }
.uik-header__title { font-family:'Titillium Web',sans-serif;font-size:2.8rem;font-weight:700;color:var(--alchem-dark);margin-bottom:14px; }
.uik-header__title span { color:var(--alchem-green); }
.uik-header__desc { font-size:1.1rem;color:#666;max-width:650px;margin:0 auto 40px; }

/* --- Index Cards --- */
.uik-index { margin-top:10px; }
.uik-index__card { display:flex;flex-direction:column;align-items:center;gap:6px;padding:20px 10px;background:#fff;border-radius:14px;text-decoration:none;color:var(--alchem-dark);box-shadow:0 2px 12px rgba(0,0,0,.04);transition:all .25s;border:1px solid transparent; }
.uik-index__card:hover { border-color:var(--alchem-green);transform:translateY(-4px);box-shadow:0 8px 24px rgba(98,187,70,.12);color:var(--alchem-green); }
.uik-index__card i { font-size:1.5rem;color:var(--alchem-green); }
.uik-index__card strong { font-size:.85rem; }
.uik-index__card small { font-size:.72rem;color:#999; }

/* --- Section --- */
.uik-section { padding:50px 0 30px; }
.uik-section__heading { font-family:'Titillium Web',sans-serif;font-size:1.6rem;font-weight:700;color:var(--alchem-dark);margin-bottom:30px;padding-bottom:12px;border-bottom:3px solid var(--alchem-green);display:inline-block; }

/* --- Block (variant wrapper) --- */
.uik-block { margin-bottom:50px; }
.uik-block__label { display:inline-block;font-size:.85rem;font-weight:600;color:#777;margin-bottom:14px;padding:5px 14px;background:#eef0f3;border-radius:8px; }
.uik-block__canvas { border:1px solid #e2e5ea;border-radius:14px;overflow:hidden;margin-bottom:12px;background:#fff; }

/* --- Toolbar (code/copy) --- */
.uik-block__toolbar { display:flex;gap:8px;margin-bottom:8px;padding-top:4px; }
.uik-toolbar__btn { padding:7px 16px;border:1.5px solid #d0d4da;border-radius:8px;background:#fff;font-size:.8rem;font-weight:600;cursor:pointer;transition:all .2s;font-family:'Poppins',sans-serif;color:#555; }
.uik-toolbar__btn:hover { background:#f0f0f0; }
.uik-toolbar__btn--copy { border-color:var(--alchem-green);color:var(--alchem-green); }
.uik-toolbar__btn--copy:hover { background:var(--alchem-green);color:#fff; }
.uik-toolbar__btn--ok { background:var(--alchem-green)!important;color:#fff!important;border-color:var(--alchem-green)!important; }
.uik-pre { background:#1a1a2e;color:#a8e6cf;padding:18px;border-radius:10px;overflow-x:auto;font-size:.8rem;line-height:1.6;margin-top:4px;margin-bottom:16px; }
.uik-pre code { color:#a8e6cf;font-family:'Courier New',monospace;white-space:pre; }

/* --- Shared Typography --- */
.uik-h1 { font-family:'Titillium Web',sans-serif;font-size:2.8rem;font-weight:700;color:var(--alchem-dark);line-height:1.15;margin-bottom:18px; }
.uik-h1 span { color:var(--alchem-green); }
.uik-h2 { font-family:'Titillium Web',sans-serif;font-size:2rem;font-weight:700;color:var(--alchem-dark);margin-bottom:14px; }
.uik-h2 span { color:var(--alchem-green); }
.uik-lead { font-size:1.1rem;color:#666;margin-bottom:24px; }
.uik-sub { font-size:1rem;color:#888; }
.uik-text { font-size:.95rem;color:#666;line-height:1.8; }
.uik-tag { display:inline-block;padding:5px 16px;background:rgba(98,187,70,.1);color:var(--alchem-green);border-radius:50px;font-size:.8rem;font-weight:600;margin-bottom:14px; }
.uik-tag--light { background:rgba(255,255,255,.15);color:#fff; }
.uik-link { color:var(--alchem-green);font-weight:600;text-decoration:none;transition:color .2s;display:inline-flex;align-items:center;gap:4px; }
.uik-link:hover { color:#4fa035; }
.uik-img { width:100%;height:auto;display:block; }

/* --- Buttons --- */
.uik-btn-outline-light { display:inline-block;padding:14px 32px;border:2px solid rgba(255,255,255,.4);border-radius:50px;color:#fff;font-weight:600;text-decoration:none;transition:all .3s; }
.uik-btn-outline-light:hover { background:#fff;color:var(--alchem-dark);border-color:#fff; }

/* --- Check List --- */
.uik-check-list { list-style:none;padding:0;margin:16px 0 0; }
.uik-check-list li { padding:6px 0;font-size:.95rem;color:#555; }
.uik-check-list li i { color:var(--alchem-green);margin-right:8px; }

/* --- Hero Centered --- */
.uik-hero-centered { background-size:cover;background-position:center;position:relative;padding:100px 0; }
.uik-hero-centered__overlay { position:absolute;inset:0;background:rgba(0,0,0,.55);z-index:1; }

/* --- Hero Glass --- */
.uik-hero-glass { background-size:cover;background-position:center;position:relative;min-height:500px;display:flex;align-items:center; }
.uik-hero-glass__overlay { position:absolute;inset:0;background:rgba(0,0,0,.45);z-index:1; }
.uik-glass-card { background:rgba(255,255,255,.92);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border:1px solid rgba(255,255,255,.3);border-radius:20px;padding:36px; }
.uik-glass-card .form-control { border-radius:10px;padding:12px 16px;border:1px solid #dee2e6; }

/* --- Hero Dark --- */
.uik-hero-dark { background:linear-gradient(135deg,#0a0a0a 0%,#1a2a1a 50%,#0d1f0d 100%);padding:80px 0; }
.uik-announce { display:inline-flex;align-items:center;gap:8px;padding:8px 20px;background:rgba(98,187,70,.12);border-radius:50px;color:var(--alchem-green);font-size:.85rem;font-weight:500;margin-bottom:30px; }
.uik-announce a { color:#fff;text-decoration:underline; }

/* --- Mini Stat --- */
.uik-mini-stat { background:var(--alchem-green);padding:24px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;color:#fff; }
.uik-mini-stat__num { font-family:'Titillium Web',sans-serif;font-size:2.2rem;font-weight:700;line-height:1; }
.uik-mini-stat__label { font-size:.82rem;opacity:.85;margin-top:4px; }

/* --- Dark BG --- */
.uik-dark-bg { background:linear-gradient(135deg,#0a0a0a 0%,#1a1a2e 100%); }

/* --- Feature Card --- */
.uik-fcard { background:#fff;padding:30px 24px;border-radius:16px;box-shadow:0 2px 16px rgba(0,0,0,.04);transition:all .3s;border:1px solid rgba(0,0,0,.04);height:100%; }
.uik-fcard:hover { transform:translateY(-6px);box-shadow:0 12px 32px rgba(0,0,0,.08);border-color:rgba(98,187,70,.15); }
.uik-fcard h5 { font-family:'Titillium Web',sans-serif;font-weight:700;margin-bottom:8px; }
.uik-fcard p { font-size:.9rem;color:#777;line-height:1.6;margin-bottom:0; }
.uik-fcard__icon { font-size:2rem;color:var(--alchem-green);margin-bottom:16px; }
.uik-fcard__icon--lg { font-size:2.5rem;min-width:60px; }
.uik-fcard__circle { width:64px;height:64px;border-radius:50%;background:var(--alchem-green);display:flex;align-items:center;justify-content:center;margin:0 auto 16px;font-size:1.4rem;color:#fff; }
.uik-fcard--dark { background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.08); }
.uik-fcard--dark:hover { background:rgba(255,255,255,.1);box-shadow:0 12px 32px rgba(0,0,0,.2); }
.uik-fcard--wide { background:#f8f9fa; }

/* --- Horizontal List --- */
.uik-hlist { display:flex;flex-direction:column;gap:0; }
.uik-hlist__item { display:flex;align-items:flex-start;gap:24px;padding:28px 0;border-bottom:1px solid #eee;transition:all .2s; }
.uik-hlist__item:hover { padding-left:12px; }
.uik-hlist__num { font-family:'Titillium Web',sans-serif;font-size:2rem;font-weight:700;color:var(--alchem-green);min-width:50px;line-height:1; }
.uik-hlist__item h5 { font-family:'Titillium Web',sans-serif;font-weight:700;margin-bottom:6px; }
.uik-hlist__item p { font-size:.9rem;color:#777;margin:0; }

/* --- Icon Row --- */
.uik-icon-row__item { padding:30px 16px;position:relative; }
.uik-icon-row__item:not(:last-child)::after { content:'';position:absolute;right:0;top:20%;height:60%;width:1px;background:#e0e0e0; }
.uik-icon-row__item i { font-size:2rem;color:var(--alchem-green);display:block;margin-bottom:10px; }
.uik-icon-row__item h6 { font-weight:700;margin-bottom:4px; }
.uik-icon-row__item small { color:#888; }

/* --- Stats --- */
.uik-stat { padding:20px; }
.uik-stat__num { font-family:'Titillium Web',sans-serif;font-size:2.8rem;font-weight:700;color:var(--alchem-green);display:block;line-height:1; }
.uik-stat__label { font-size:.9rem;color:#777;margin-top:6px; }
.uik-stat-card { background:#fff;padding:28px 20px;border-radius:16px;box-shadow:0 2px 16px rgba(0,0,0,.04);text-align:center;transition:all .3s;height:100%; }
.uik-stat-card:hover { transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,.08); }
.uik-stat-card i { font-size:1.6rem;color:var(--alchem-green);display:block;margin-bottom:10px; }
.uik-stat-card p { font-size:.85rem;color:#777;margin:8px 0 0; }
.uik-stats-strip { background:linear-gradient(135deg,var(--alchem-green) 0%,#4fa035 100%);padding:40px 0;color:#fff; }
.uik-stats-strip strong { font-family:'Titillium Web',sans-serif;font-size:2.2rem;font-weight:700;display:block; }
.uik-stats-strip span { font-size:.85rem;opacity:.8; }

/* --- Testimonial Card --- */
.uik-tcard { background:#fff;padding:28px;border-radius:16px;box-shadow:0 2px 16px rgba(0,0,0,.04);transition:all .3s;height:100%;display:flex;flex-direction:column; }
.uik-tcard:hover { box-shadow:0 8px 24px rgba(0,0,0,.08); }
.uik-tcard p { font-size:.95rem;color:#555;line-height:1.7;flex:1; }
.uik-tcard__stars { color:var(--alchem-green);margin-bottom:12px;font-size:.9rem; }
.uik-tcard__author { margin-top:auto;padding-top:12px; }
.uik-tcard__author strong { display:block;font-size:.9rem; }
.uik-tcard__author small { color:#999; }
.uik-tcard--dark { background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08); }
.uik-tcard--dark:hover { background:rgba(255,255,255,.08); }
.uik-quote { font-size:1.3rem;font-style:italic;color:#444;line-height:1.7;margin:20px 0 24px; }

/* --- Team Card --- */
.uik-team-card { text-align:center;transition:all .3s; }
.uik-team-card:hover { transform:translateY(-6px); }
.uik-team-card__img { width:100%;aspect-ratio:4/5;object-fit:cover;border-radius:16px;margin-bottom:14px; }
.uik-team-card h5 { font-family:'Titillium Web',sans-serif;font-weight:700;margin-bottom:4px; }
.uik-team-card--dark .uik-team-card__img { border:2px solid rgba(255,255,255,.1); }
.uik-team-mini { text-align:center; }
.uik-team-mini small { display:block;margin-top:6px;color:#777;font-size:.8rem; }

/* --- Blog Card --- */
.uik-blog-card { background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 2px 16px rgba(0,0,0,.04);transition:all .3s;height:100%; }
.uik-blog-card:hover { transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,.08); }
.uik-blog-card__img { width:100%;height:220px;object-fit:cover; }
.uik-blog-card--featured .uik-blog-card__img { height:280px; }
.uik-blog-card__body { padding:22px; }
.uik-blog-card__date { font-size:.78rem;color:#999;display:block;margin-bottom:8px; }
.uik-blog-card__body h5,.uik-blog-card__body h6 { font-family:'Titillium Web',sans-serif;font-weight:700;margin-bottom:8px; }
.uik-blog-card__body p { font-size:.9rem;color:#777;line-height:1.6; }
.uik-blog-card--dark { background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08); }
.uik-blog-card--dark:hover { background:rgba(255,255,255,.08); }
.uik-blog-card--horizontal { box-shadow:0 2px 12px rgba(0,0,0,.04); }

/* --- Blog Rows --- */
.uik-blog-rows { display:flex;flex-direction:column; }
.uik-blog-row { display:flex;align-items:center;gap:20px;padding:18px 0;border-bottom:1px solid #eee;text-decoration:none;color:var(--alchem-dark);transition:all .2s; }
.uik-blog-row:hover { padding-left:10px;color:var(--alchem-green); }
.uik-blog-row__date { font-size:.82rem;color:#999;min-width:90px; }
.uik-blog-row__title { flex:1;font-family:'Titillium Web',sans-serif;font-weight:600;font-size:1rem; }
.uik-blog-row i { color:#ccc;transition:color .2s; }
.uik-blog-row:hover i { color:var(--alchem-green); }

/* --- FAQ --- */
.uik-faq-item { border-bottom:1px solid #eee;cursor:pointer; }
.uik-faq-item--dark { border-bottom-color:rgba(255,255,255,.1); }
.uik-faq-item__q { display:flex;justify-content:space-between;align-items:center;padding:18px 0;font-family:'Titillium Web',sans-serif;font-size:1rem;font-weight:600; }
.uik-faq-item__q i { transition:transform .3s;color:var(--alchem-green);font-size:1.1rem; }
.uik-faq-item--open .uik-faq-item__q i { transform:rotate(45deg); }
.uik-faq-item__a { max-height:0;overflow:hidden;transition:max-height .4s ease,padding .4s ease; }
.uik-faq-item--open .uik-faq-item__a { max-height:300px;padding-bottom:16px; }
.uik-faq-item__a p { color:#666;line-height:1.7;font-size:.92rem; }

/* --- Logo Item --- */
.uik-logo-item { padding:16px;opacity:.5;transition:opacity .3s; }
.uik-logo-item:hover { opacity:1; }
.uik-logo-item--dark { opacity:.3; }
.uik-logo-item--dark:hover { opacity:.7; }

/* --- CTA Gradient --- */
.uik-cta-gradient { background:linear-gradient(135deg,#0a2e1a 0%,#1a4a2e 50%,var(--alchem-green) 100%);padding:80px 0; }

/* --- Float Bar --- */
.uik-float-bar { background:#fff;border-radius:16px;padding:24px 32px;display:flex;align-items:center;justify-content:space-between;gap:24px;box-shadow:0 4px 24px rgba(0,0,0,.06);flex-wrap:wrap; }

/* --- Footer --- */
.uik-footer { background:var(--alchem-dark);color:rgba(255,255,255,.5);padding:24px 0;font-size:.82rem; }

/* --- Padding helper --- */
.py-lg-6 { padding-top:5rem!important;padding-bottom:5rem!important; }

/* --- Responsive --- */
@media(max-width:991px){
    .uik-h1{font-size:2rem;}
    .uik-header__title{font-size:2.2rem;}
    .uik-float-bar{flex-direction:column;text-align:center;}
    .uik-blog-row{flex-wrap:wrap;}
    .uik-icon-row__item::after{display:none;}
}
@media(max-width:575px){
    .uik-h1{font-size:1.7rem;}
    .uik-h2{font-size:1.5rem;}
    .uik-header__title{font-size:1.8rem;}
}

/* ================================================================
   SHARED USER MENU STYLES
   Used by: customer_settings.html, eshop.html, orders.html
   ================================================================ */

/* User menu bar */
.user-menu-bar {
    background: white;
    padding: 0;
    margin-top: 100px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #e9ecef;
}

.user-menu-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 12px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 42px;
    height: 42px;
    background: var(--alchem-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    color: var(--alchem-dark);
    font-size: 1rem;
}

.user-company {
    font-size: 0.8rem;
    color: #888;
}

.user-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.user-nav-item {
    display: flex;
    align-items: center;
}

.user-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.user-nav-link:hover {
    background: rgba(98, 187, 70, 0.1);
    color: var(--alchem-green);
}

.user-nav-link.active {
    background: var(--alchem-green);
    color: white;
}

.user-nav-link.active:hover {
    background: #4fa035;
    color: white;
}

.user-nav-link i {
    font-size: 1.1rem;
}

.user-nav-link.logout {
    color: #dc3545;
}

.user-nav-link.logout:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.user-nav-divider {
    width: 1px;
    height: 30px;
    background: #e9ecef;
    margin: 0 10px;
}

@media (max-width: 1199px) {
    .user-nav-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .user-nav-link span {
        display: none;
    }

    .user-nav-link i {
        font-size: 1.2rem;
    }
}

/* ================================================================
   CUSTOMER SETTINGS PAGE
   ================================================================ */

/* Settings page specific styles */
.settings-section {
    padding-top: 30px;
    padding-bottom: 60px;
    min-height: 100vh;
}

.settings-header {
    margin-bottom: 30px;
}

.settings-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--alchem-dark);
}

.settings-title span {
    color: var(--alchem-green);
}

/* Settings tabs */
.settings-tabs {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 30px;
}

.settings-tabs .nav-tabs {
    border: none;
    gap: 10px;
    flex-wrap: wrap;
}

.settings-tabs .nav-link {
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.settings-tabs .nav-link:hover {
    background: rgba(98, 187, 70, 0.1);
    color: var(--alchem-green);
}

.settings-tabs .nav-link.active {
    background: var(--alchem-green);
    color: white;
}

.settings-tabs .nav-link i {
    font-size: 1.1rem;
}

/* Settings content */
.settings-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 30px;
}

.settings-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--alchem-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.settings-section-title i {
    color: var(--alchem-green);
}

/* Form styles */
.settings-form-label {
    font-weight: 500;
    color: var(--alchem-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.settings-form-input {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.settings-form-input:focus {
    border-color: var(--alchem-green);
    box-shadow: 0 0 0 3px rgba(98, 187, 70, 0.1);
    outline: none;
}

.settings-form-input:disabled {
    background: #f8f9fa;
    color: #666;
}

/* Avatar section */
.avatar-section {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 30px;
}

.avatar-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--alchem-green) 0%, #4fa035 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.avatar-info h4 {
    font-weight: 600;
    color: var(--alchem-dark);
    margin-bottom: 5px;
}

.avatar-info p {
    color: #888;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.btn-change-avatar {
    background: white;
    border: 2px solid #e9ecef;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
    color: var(--alchem-dark);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-change-avatar:hover {
    border-color: var(--alchem-green);
    color: var(--alchem-green);
}

/* Buttons */
.btn-save {
    background: var(--alchem-green);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-save:hover {
    background: #4fa035;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(98, 187, 70, 0.35);
}

.btn-cancel {
    background: #f8f9fa;
    color: var(--alchem-dark);
    border: 2px solid #e9ecef;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cancel:hover {
    background: #e9ecef;
    color: var(--alchem-dark);
}

.btn-danger {
    background: #dc3545;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-danger:hover {
    background: #c82333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.35);
}

/* Address card */
.address-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
}

.address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.address-card-title {
    font-weight: 600;
    color: var(--alchem-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.address-card-title i {
    color: var(--alchem-green);
}

.address-default-badge {
    background: rgba(98, 187, 70, 0.15);
    color: var(--alchem-green);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.address-card-content {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
}

.address-card-content strong {
    color: var(--alchem-dark);
}

.address-card-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-edit-address {
    background: white;
    border: 2px solid #e9ecef;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--alchem-dark);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.btn-edit-address:hover {
    border-color: var(--alchem-green);
    color: var(--alchem-green);
}

.btn-set-default {
    background: transparent;
    border: none;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.85rem;
    color: #888;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-set-default:hover {
    color: var(--alchem-green);
}

/* Notification settings */
.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
}

.notification-info h5 {
    font-weight: 600;
    color: var(--alchem-dark);
    margin-bottom: 5px;
    font-size: 1rem;
}

.notification-info p {
    color: #888;
    margin: 0;
    font-size: 0.85rem;
}

.notification-toggle {
    position: relative;
}

.notification-toggle input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    width: 50px;
    height: 28px;
    background: #ccc;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.notification-toggle input[type="checkbox"]:checked + .toggle-slider {
    background: var(--alchem-green);
}

.notification-toggle input[type="checkbox"]:checked + .toggle-slider::after {
    left: 25px;
}

/* Security section */
.security-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.security-item:last-child {
    border-bottom: none;
}

.security-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.security-icon {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alchem-green);
    font-size: 1.2rem;
}

.security-details h5 {
    font-weight: 600;
    color: var(--alchem-dark);
    margin-bottom: 3px;
    font-size: 1rem;
}

.security-details p {
    color: #888;
    margin: 0;
    font-size: 0.85rem;
}

.security-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-secure {
    color: var(--alchem-green);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-warning {
    color: #ffc107;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Danger zone */
.danger-zone {
    background: rgba(220, 53, 69, 0.05);
    border: 2px solid rgba(220, 53, 69, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.danger-zone-title {
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.danger-zone-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Alert messages */
.alert-success-custom {
    background: rgba(98, 187, 70, 0.1);
    border: 1px solid var(--alchem-green);
    color: var(--alchem-green);
    padding: 15px 20px;
    border-radius: 10px;
    display: none;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.alert-success-custom.show {
    display: flex;
}

/* ================================================================
   E-SHOP PAGE
   ================================================================ */

/* E-shop specific styles */
.eshop-section {
    padding-top: 30px;
    padding-bottom: 60px;
    min-height: 100vh;
}

.eshop-header {
    margin-bottom: 30px;
}

.eshop-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--alchem-dark);
}

.eshop-title span {
    color: var(--alchem-green);
}

/* Filter section */
.filter-section {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.filter-input {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.filter-input:focus {
    border-color: var(--alchem-green);
    box-shadow: 0 0 0 3px rgba(98, 187, 70, 0.1);
}

/* Products table */
.products-table-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.products-table {
    margin-bottom: 0;
}

.products-table thead {
    background: var(--alchem-dark);
    color: white;
}

.products-table thead th {
    font-weight: 600;
    padding: 18px 15px;
    border: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-table tbody tr {
    transition: all 0.2s ease;
}

.products-table tbody tr:hover {
    background: rgba(98, 187, 70, 0.05);
}

.products-table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-color: #f0f0f0;
}

/* Product image thumbnail */
.product-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: 2px solid #e9ecef;
}

.product-thumbnail:hover {
    transform: scale(1.1);
    border-color: var(--alchem-green);
}

/* Image preview modal */
.image-preview-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

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

.image-preview-modal img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

/* SKU styling */
.product-sku {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    color: var(--alchem-dark);
    font-size: 0.9rem;
}

/* Product name */
.product-name {
    font-weight: 600;
    color: var(--alchem-dark);
}

/* Product variant text (under product name) */
.product-variant-text {
    font-size: 0.75rem;
    color: #888;
    margin-top: 2px;
}

/* Variant badge */
.variant-badge {
    background: #e9ecef;
    color: #495057;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Manufacturer badge */

/* Order form section */
.order-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 30px;
    margin-top: 40px;
}

.order-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--alchem-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-section-title i {
    color: var(--alchem-green);
}

.order-subsection-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--alchem-dark);
    margin-bottom: 20px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-subsection-title:first-child {
    margin-top: 0;
}

.order-subsection-title i {
    color: var(--alchem-green);
    font-size: 1rem;
}

/* Order summary table */
.order-summary-table {
    width: 100%;
    margin-bottom: 0;
}

.order-summary-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: var(--alchem-dark);
    padding: 12px 15px;
    border-bottom: 2px solid #e9ecef;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-summary-table td {
    padding: 12px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.order-summary-table tbody tr:hover {
    background: rgba(98, 187, 70, 0.03);
}

.order-summary-image {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
}

.order-summary-total {
    background: #f8f9fa;
    font-weight: 700;
    font-size: 1.1rem;
}

.order-summary-total td {
    border-bottom: none;
    padding: 18px 15px;
}

/* Form inputs */
.order-form-label {
    font-weight: 500;
    color: var(--alchem-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.order-form-input {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.order-form-input:focus {
    border-color: var(--alchem-green);
    box-shadow: 0 0 0 3px rgba(98, 187, 70, 0.1);
    outline: none;
}

.order-form-input:disabled {
    background: #f8f9fa;
    color: #666;
}

/* Delivery/Payment options */
.option-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.option-card:hover {
    border-color: var(--alchem-green);
    background: rgba(98, 187, 70, 0.03);
}

.option-card.selected {
    border-color: var(--alchem-green);
    background: rgba(98, 187, 70, 0.08);
}

.option-card input[type="radio"] {
    display: none;
}

.option-radio {
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.option-card.selected .option-radio {
    border-color: var(--alchem-green);
}

.option-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--alchem-green);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.option-card.selected .option-radio::after {
    opacity: 1;
}

.option-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--alchem-green);
    flex-shrink: 0;
}

.option-card.selected .option-icon {
    background: rgba(98, 187, 70, 0.15);
}

.option-info {
    flex: 1;
}

.option-title {
    font-weight: 600;
    color: var(--alchem-dark);
    margin-bottom: 3px;
}

.option-description {
    font-size: 0.85rem;
    color: #888;
}

.option-price {
    font-weight: 700;
    color: var(--alchem-green);
    font-size: 1rem;
    white-space: nowrap;
}

/* Terms checkbox */
.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 30px;
}

.terms-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--alchem-green);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.terms-checkbox label {
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    line-height: 1.6;
}

.terms-checkbox label a {
    color: var(--alchem-green);
    text-decoration: underline;
}

/* Submit button */
.btn-submit-order {

    background: var(--alchem-green);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-submit-order:hover {
    background: #4fa035;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(98, 187, 70, 0.35);
}

.btn-submit-order:disabled {
    background: #ccc;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

.btn-submit-order i {
    font-size: 1.2rem;
}

/* Same address checkbox */
.same-address-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.same-address-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--alchem-green);
    cursor: pointer;
}

.same-address-checkbox label {
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    margin: 0;
}

/* Price styling */
.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 0.85rem;
}

.price-discount {
    font-weight: 700;
    color: var(--alchem-green);
    font-size: 1.1rem;
}

/* Quantity input */
.quantity-input {
    width: 80px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 8px;
    font-weight: 500;
}

.quantity-input:focus {
    border-color: var(--alchem-green);
    outline: none;
}

/* Add to cart button */
.btn-add-cart {
    background: var(--alchem-green);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-add-cart:hover {
    background: #4fa035;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(98, 187, 70, 0.3);
}

.btn-add-cart:disabled {
    background: #ccc;
    transform: none;
    box-shadow: none;
}

/* Description button */
.btn-description {
    background: #6c757d;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-description:hover {
    background: #495057;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-description i {
    font-size: 1.1rem;
}

/* Product detail modal */
.product-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.product-detail-modal.active {
    opacity: 1;
    visibility: visible;
}

.product-detail-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-detail-modal.active .product-detail-content {
    transform: scale(1);
}

.product-detail-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--alchem-dark) 0%, #2c3e50 100%);
    color: white;
    position: relative;
}

.product-detail-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.product-detail-header .product-sku-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 8px;
}

.product-detail-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.product-detail-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.product-detail-body h4 {
    color: var(--alchem-dark);
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--alchem-green);
}

.product-detail-body h4:first-child {
    margin-top: 0;
}

.product-detail-body h5 {
    color: var(--alchem-dark);
    font-size: 1rem;
    margin-top: 15px;
    margin-bottom: 8px;
}

.product-detail-body ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.product-detail-body li {
    margin-bottom: 5px;
    color: #555;
}

.product-detail-body p {
    color: #555;
    line-height: 1.7;
}

.product-detail-body .table {
    font-size: 0.9rem;
}

.product-detail-body .table th {
    background: #f8f9fa;
}

.product-detail-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.product-detail-price {
    display: flex;
    flex-direction: column;
}

.product-detail-price .price-original {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.product-detail-price .price-discount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--alchem-green);
}

.product-detail-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-detail-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-detail-quantity label {
    font-weight: 500;
    color: #555;
}

.product-detail-quantity input {
    width: 80px;
    padding: 10px 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
}

.product-detail-quantity input:focus {
    outline: none;
    border-color: var(--alchem-green);
}

.product-detail-cart-btn {
    background: var(--alchem-green);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-detail-cart-btn:hover {
    background: #4fa035;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(98, 187, 70, 0.3);
}

/* Floating cart */
.floating-cart {
    position: fixed;
    top: 100px;
    right: 20px;
    width: 380px;
    max-height: calc(100vh - 140px);
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateX(calc(100% + 30px));
    transition: transform 0.3s ease;
}

.floating-cart.visible {
    transform: translateX(0);
}

.cart-header {
    background: var(--alchem-green);
    color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h5 {
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-count {
    background: white;
    color: var(--alchem-green);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.cart-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    max-height: 400px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.cart-item:hover {
    background: #f8f9fa;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--alchem-dark);
    margin-bottom: 2px;
}

.cart-item-variant {
    font-size: 0.75rem;
    color: #888;
}

.cart-item-price {
    font-weight: 700;
    color: var(--alchem-green);
    font-size: 0.95rem;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.cart-quantity-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-qty-btn:hover {
    background: var(--alchem-green);
    color: white;
    border-color: var(--alchem-green);
}

.cart-qty-value {
    width: 30px;
    text-align: center;
    font-weight: 600;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 2px 5px;
    transition: all 0.2s ease;
}

.cart-remove-btn:hover {
    background: #dc3545;
    color: white;
    border-radius: 3px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ddd;
}

.cart-footer {
    padding: 20px;
    border-top: 2px solid #f0f0f0;
    background: #f8f9fa;
    border-radius: 0 0 15px 15px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cart-total-label {
    font-weight: 600;
    color: var(--alchem-dark);
}

.cart-total-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--alchem-green);
}

.btn-order {
    width: 100%;
    background: var(--alchem-dark);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: var(--alchem-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(98, 187, 70, 0.3);
}

.btn-order:disabled {
    background: #ccc;
    transform: none;
    box-shadow: none;
}

/* Cart toggle button */
.cart-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--alchem-green);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(98, 187, 70, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-toggle:hover {
    transform: scale(1.1);
    background: #4fa035;
}

.cart-toggle .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--alchem-dark);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Table responsive wrapper */
.table-responsive {
    max-height: 600px;
    overflow-y: auto;
}

.table-responsive::-webkit-scrollbar {
    width: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: var(--alchem-green);
    border-radius: 4px;
}

/* No results message */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ddd;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .floating-cart {
        width: 340px;
    }
}

/* ================================================================
   ORDERS PAGE
   ================================================================ */

/* Orders page specific styles */
.orders-section {
    padding-top: 30px;
    padding-bottom: 60px;
    min-height: 100vh;
}

.orders-header {
    margin-bottom: 30px;
}

.orders-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--alchem-dark);
}

.orders-title span {
    color: var(--alchem-green);
}

/* Orders table */
.orders-table-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.orders-table {
    margin-bottom: 0;
}

.orders-table thead {
    background: var(--alchem-dark);
    color: white;
}

.orders-table thead th {
    font-weight: 600;
    padding: 18px 15px;
    border: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orders-table tbody tr {
    transition: all 0.2s ease;
    cursor: pointer;
}

.orders-table tbody tr:hover {
    background: rgba(98, 187, 70, 0.05);
}

.orders-table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-color: #f0f0f0;
}

/* Order number styling */
.order-number {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    color: var(--alchem-green);
    font-size: 0.95rem;
}

/* Status badges */
.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-badge.status-new {
    background: rgba(13, 202, 240, 0.15);
    color: #0dcaf0;
}

.status-badge.status-processing {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.status-badge.status-shipped {
    background: rgba(98, 187, 70, 0.15);
    color: var(--alchem-green);
}

.status-badge.status-delivered {
    background: rgba(25, 135, 84, 0.15);
    color: #198754;
}

.status-badge.status-cancelled {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}

/* Price styling */
.order-price {
    font-weight: 700;
    color: var(--alchem-dark);
    font-size: 1rem;
}

/* Order detail section */
.order-detail-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 30px;
    margin-top: 30px;
    display: none;
}

.order-detail-section.visible {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.order-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 15px;
}

.order-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--alchem-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-detail-title i {
    color: var(--alchem-green);
}

.order-detail-close {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.order-detail-close:hover {
    background: #dc3545;
    color: white;
}

.order-detail-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.order-info-item {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
}

.order-info-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.order-info-value {
    font-weight: 600;
    color: var(--alchem-dark);
    font-size: 1rem;
}

.order-detail-subsection {
    margin-bottom: 25px;
}

.order-detail-subsection-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--alchem-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-detail-subsection-title i {
    color: var(--alchem-green);
}

/* Order items table */
.order-items-table {
    width: 100%;
    margin-bottom: 0;
}

.order-items-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: var(--alchem-dark);
    padding: 12px 15px;
    border-bottom: 2px solid #e9ecef;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-items-table td {
    padding: 12px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.order-items-table tbody tr:hover {
    background: rgba(98, 187, 70, 0.03);
}

.order-item-image {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
}

.order-item-name {
    font-weight: 600;
    color: var(--alchem-dark);
}

.order-item-sku {
    font-size: 0.75rem;
    color: #888;
}

.order-items-total {
    background: #f8f9fa;
    font-weight: 700;
}

.order-items-total td {
    border-bottom: none;
    padding: 15px;
}

/* Addresses grid */
.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Timeline */
.order-timeline {
    position: relative;
    padding-left: 30px;
}

.order-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e9ecef;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #e9ecef;
}

.timeline-item.completed::before {
    background: var(--timeline-color, var(--alchem-green));
    box-shadow: 0 0 0 2px var(--timeline-color, var(--alchem-green));
}

.timeline-item.current::before {
    background: var(--timeline-color, #ffc107);
    box-shadow: 0 0 0 2px var(--timeline-color, #ffc107);
}

.timeline-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 3px;
}

.timeline-title {
    font-weight: 600;
    color: var(--alchem-dark);
    font-size: 0.95rem;
}

.timeline-description {
    font-size: 0.85rem;
    color: #666;
    margin-top: 3px;
}

/* Action buttons */
.btn-action {
    background: var(--alchem-green);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-action:hover {
    background: #4fa035;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(98, 187, 70, 0.3);
}

.btn-action-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-action-secondary:hover {
    background: #495057;
    color: white;
}

/* ================================================================
   CONTACT PAGE (contact.html)
   ================================================================ */

/* Dark variant of contact-hero used on contact.html */
.contact-hero--dark {
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero--dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://alchem.invelity.com/wp-content/themes/alchem/imgs/corner-plant.png') no-repeat right top;
    background-size: 300px;
    opacity: 0.3;
}

.contact-hero--dark h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero--dark h1 span {
    color: #62BB46;
}

.contact-hero--dark p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #62BB46 0%, #4a9a32 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-card .icon i {
    font-size: 1.5rem;
    color: #fff;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.contact-card p {
    color: #666;
    margin-bottom: 10px;
}

.contact-card a {
    color: #62BB46;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #4a9a32;
}

/* Company Info Section */
.company-info-section {
    padding: 80px 0;
    background: #fff;
}

.company-info-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 50px;
    color: #fff;
}

.company-info-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.company-info-box h2 span {
    color: #62BB46;
}

.company-info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.company-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.company-info-item label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.company-info-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.team-section h2 span {
    color: #62BB46;
}

.team-member {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member .image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #62BB46;
}

.team-member .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member .regions {
    display: inline-block;
    background: #62BB46;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.team-member h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.team-member .phone,
.team-member .email {
    display: block;
    color: #666;
    margin-bottom: 5px;
}

.team-member .email a {
    color: #62BB46;
    text-decoration: none;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #fff;
}

.map-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.map-container {
    background: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container svg {
    max-width: 100%;
    max-height: 100%;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.form-section h2 span {
    color: #62BB46;
}

.contact-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 15px 20px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.contact-form .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #62BB46;
    box-shadow: 0 0 0 3px rgba(98, 187, 70, 0.2);
    color: #fff;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

@media (max-width: 768px) {
    .contact-hero--dark h1 {
        font-size: 2rem;
    }
    
    .contact-hero--dark {
        padding-top: 120px;
        padding-bottom: 50px;
    }
    
    .company-info-box {
        padding: 30px;
    }
}

/* ================================================================
   O NÁS PAGE
   ================================================================ */

/* ===== About Intro Section ===== */
.about-intro-section {
    padding: 100px 0 80px;
    background: white;
    position: relative;
}

.about-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-intro-content h2 span {
    color: #62BB46;
}

.about-intro-content p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.9;
}

/* ===== Certification Section ===== */
.certification-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.certification-card {
    background: white;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(98, 187, 70, 0.08);
    position: relative;
    overflow: hidden;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #62BB46, #4fa035);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.certification-card:hover::before {
    transform: scaleX(1);
}

.certification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: rgba(98, 187, 70, 0.2);
}

.certification-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #62BB46 0%, #4fa035 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(98, 187, 70, 0.3);
}

.certification-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.certification-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== Timeline Section (O nás) ===== */
.timeline-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f0f7ed 100%);
    position: relative;
    overflow: hidden;
}

.timeline-section .timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-section .timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #62BB46, #4fa035, #62BB46);
    border-radius: 2px;
    top: 0;
}

.timeline-section .timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-bottom: 60px;
    width: 100%;
}

.timeline-section .timeline-item:last-child {
    padding-bottom: 0;
}

/* Reset order-timeline ::before for this context */
.timeline-section .timeline-item::before {
    display: none;
}

.timeline-section .timeline-item .timeline-dot {
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: #62BB46;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px #62BB46;
    position: relative;
    z-index: 2;
    margin: 0;
    flex-shrink: 0;
}

.timeline-section .timeline-item .timeline-content {
    flex: 1;
    background: transparent;
    padding: 8px 0;
    max-width: calc(50% - 40px);
}

/* Absolute positioning for dots on the center line */
.timeline-section .timeline-item .timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 12px;
}

/* Even items (1995, 2008, 2020 = 2nd, 4th, 6th child): content on LEFT */
.timeline-section .timeline-item:nth-child(even) .timeline-content {
    margin-right: calc(50% + 22px);
    margin-left: 0;
    text-align: right;
}

/* Odd items (2002, 2015, 2024 = 3rd, 5th, 7th child): content on RIGHT */
.timeline-section .timeline-item:nth-child(odd) .timeline-content {
    margin-left: calc(50% + 22px);
    margin-right: 0;
    text-align: left;
}

.timeline-section .timeline-year {
    font-family: 'Titillium Web', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #62BB46;
    margin-bottom: 6px;
    line-height: 1;
}

.timeline-section .timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

/* Timeline responsive - tablet */
@media (max-width: 768px) {
    .timeline-section .timeline-line {
        left: 20px;
        transform: none;
    }

    .timeline-section .timeline-item .timeline-dot {
        left: 2px;
        transform: translateX(-50%);
        top: 15px;
    }

    .timeline-section .timeline-item:nth-child(odd) .timeline-content,
    .timeline-section .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px !important;
        margin-right: 0 !important;
        text-align: left !important;
        max-width: calc(100% - 50px);
    }

    .timeline-section .timeline-item .timeline-content {
        padding: 8px 0;
    }

    .timeline-section .timeline-year {
        font-size: 1.6rem;
    }
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: #62BB46;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Values Section ===== */
.values-section {
    padding: 100px 0;
    background: white;
}

.value-card {
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    height: 100%;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(98, 187, 70, 0.1) 0%, rgba(98, 187, 70, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #62BB46;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== Fade-in Animation ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }

.fade-in-delay-2 { transition-delay: 0.2s; }

.fade-in-delay-3 { transition-delay: 0.3s; }

.fade-in-delay-4 { transition-delay: 0.4s; }

/* ================================================================
   LOGIN PAGE
   ================================================================ */

/* Login page specific styles */
.login-section {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
}

.login-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Login form side */
.login-form-side {
    padding: 50px 45px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.login-header {
    margin-bottom: 40px;
}

.login-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--alchem-dark);
    margin-bottom: 10px;
}

.login-title span {
    color: var(--alchem-green);
}

.login-subtitle {
    color: #888;
    font-size: 1rem;
}

.login-form {
    margin-bottom: 30px;
}

.form-input {
    width: 100%;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--alchem-green);
    box-shadow: 0 0 0 4px rgba(98, 187, 70, 0.1);
    outline: none;
}

.form-input::placeholder {
    color: #aaa;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper .form-input {
    padding-left: 48px;
}

.input-icon-wrapper .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 1.2rem;
}

.input-icon-wrapper:focus-within .input-icon {
    color: var(--alchem-green);
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: var(--alchem-green);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.form-check-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-check-custom input {
    width: 20px;
    height: 20px;
    accent-color: var(--alchem-green);
    cursor: pointer;
}

.form-check-custom label {
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.forgot-password {
    color: var(--alchem-green);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-password:hover {
    color: #4fa035;
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    background: var(--alchem-green);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(98, 187, 70, 0.3);
}

.btn-login:hover {
    background: #4fa035;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(98, 187, 70, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: #aaa;
    font-size: 0.9rem;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e9ecef;
}

.login-divider span {
    padding: 0 15px;
}

.request-account-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.request-account-title {
    font-weight: 600;
    color: var(--alchem-dark);
    margin-bottom: 8px;
    font-size: 1rem;
}

.request-account-text {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-request-account {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--alchem-dark);
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-request-account:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-request-account i {
    font-size: 1.1rem;
}

/* Benefits side */
.benefits-side {
    padding: 40px 30px;
}

.benefits-header {
    margin-bottom: 40px;
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--alchem-dark);
    margin-bottom: 15px;
}

.benefits-subtitle {
    color: #666;
    font-size: 1.1rem;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(98, 187, 70, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(98, 187, 70, 0.15);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(98, 187, 70, 0.12);
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--alchem-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-weight: 600;
    color: var(--alchem-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.benefit-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.benefits-cta {
    margin-top: 30px;
    padding: 25px;
    background: rgba(98, 187, 70, 0.08);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(98, 187, 70, 0.15);
}

.benefits-cta-title {
    color: var(--alchem-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefits-cta-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-benefits-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--alchem-green);
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-benefits-cta:hover {
    background: #4fa035;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(98, 187, 70, 0.3);
}

/* Error state */
.form-input.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-input.error + .error-message {
    display: block;
}

/* Loading state */
.btn-login.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-login.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

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

/* ================================================================
   SUCCESS/LOGOUT PAGE
   ================================================================ */

/* Success page specific styles */
.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.success-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--alchem-green) 0%, #4fa035 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    font-size: 3rem;
    color: white;
}

.success-icon.check-animation {
    animation: checkmark 0.8s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--alchem-dark);
    margin-bottom: 15px;
}

.success-message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.success-divider {
    height: 1px;
    background: #e9ecef;
    margin: 30px 0;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-success-primary {
    background: var(--alchem-green);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-success-primary:hover {
    background: #4fa035;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(98, 187, 70, 0.35);
}

.btn-success-secondary {
    background: #f8f9fa;
    color: var(--alchem-dark);
    border: 2px solid #e9ecef;
    padding: 13px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-success-secondary:hover {
    background: #e9ecef;
    color: var(--alchem-dark);
    border-color: #dee2e6;
}

.success-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
}

.success-info-title {
    font-weight: 600;
    color: var(--alchem-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.success-info-title i {
    color: var(--alchem-green);
}

.success-info-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.auto-redirect {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #888;
}

.auto-redirect span {
    color: var(--alchem-green);
    font-weight: 600;
}


   /* 1. Fixní obal - přidána oprava pro uskakování (overflow-x) */
    .header-fixed-top {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
        /* Zajišťuje, že se šířka nehne při otevření modálu/offcanvasu */
        width: 100% !important;
        margin-right: 0 !important;
        padding-right: 0 !important;
    }

    /* Oprava pro celou stránku, aby nevznikal horizontální scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* 2. Vylepšený Hamburger Menu Button */
    .navbar-toggler {
        padding: 0.4rem 0.8rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        background: transparent;
    }

    .navbar-toggler:focus {
        outline: none;
    }

    .navbar-toggler:active {
        transform: scale(0.95);
    }

    .navbar-toggler-icon {
        width: 2em;
        height: 2em;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(98, 187, 70, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .toggler-text {
        color: #62BB46;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    /* 3. Offcanvas oprava */
    @media (max-width: 1199.98px) {
        .offcanvas.offcanvas-xl {
            height: 100vh !important;
            top: 0 !important;
            visibility: visible;
        }
        .offcanvas-body { 
            padding-top: 2.5rem; 
        }
    }

    /* 4. Alerty pod menu */
    .messages-container .alert {
        margin-bottom: 0;
        border: none;
        border-radius: 0;
        text-align: center;
        padding: 0.8rem 1rem;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

