/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

ul,
ol {
    list-style: none;
}

:root {
    --font-headings: 'Sora', sans-serif;
    --font-main: 'Outfit', sans-serif;

    --white: #FFFFFF;
    --light: #F7F7F9;
    --dark: #0B0E15;
    --darker: #0B0E15;
    --red: #D50000;

    --lime: #9AA820;
    --lime-dark: #899616;

    --yellow: #FDDB01;
    --yellow-l: #FFF387;
    --yellow-dark: #FFCC00;

    --gold: #C6A56B;

    --gray: #6D6C79;
    --green: #1CA561;
    --border: #E5E5E5;

    --blue: #217FE7;
    --blue-l: #CEE5FF;
    --navy: #0A364D;

    --pink: #E71E80;
    --pink-l: #FFCEE6;
    --pink-dark: #AD1F64;

    --aqua: #4FEDCC;
    --aqua-l: #B1F4E6;
    --aqua-dark: #0EA384;

    --white-rgb: 255 255 255;
    --black-rgb: 0, 0, 0;


    --border-radius: 4px;
    --border-radius-pill: 9999px;
    --border-radius-round: 10px;
}

html {
    background-color: var(--white);
    font-size: 62.5%;
}

body {
    max-width: 100%;
    margin: 0 auto;
    font-family: var(--font-main);
    color: var(--dark);
    font-size: 1.6rem
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a {
    color: var(--dark);

    &:hover,
    &:active,
    &:focus {
        color: var(--darker);
    }
}


.container {
    max-width: 1340px;
    padding-right: 20px;
    padding-left: 20px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 575px) {
    .container {
        padding-right: 10px;
        padding-left: 10px;
    }
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
}

h2 {
    font-size: 2.8rem;
}

section {
    padding: 8rem 0;
}

/* Hero Section */
.hero {
    padding: 2rem;

}

.hero-container {
    display: flex;
    max-width: 1920px;
    margin: 0 auto;
    gap: 2rem;
}

.hero-cell {
    flex: 1;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.hero-cell-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.hero-cell:hover .hero-cell-bg {
    transform: scale(1.05);
}

.hero-content {
    position: absolute;
    bottom: 4.8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 4rem;
    width: calc(100% - 8rem);
    max-width: 66rem;
    text-align: center;
    color: var(--white);
    border-radius: var(--border-radius);
}

.hero-title {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
    font-weight: 700;
}

.hero-text {
    font-size: 1.6rem;
    margin-bottom: 3.2rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

@media screen and (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        height: auto;
    }

    .hero-cell {
        aspect-ratio: 4 / 3;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-item {
    background-color: var(--white);
    padding: 4.8rem;
    border-radius: var(--border-radius-round);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-rating {
    margin-bottom: 2.4rem;
    display: flex;
    gap: 4px;
}

.star-icon {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    margin-bottom: 3.2rem;
    font-size: 1.76rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    font-family: var(--font-headings);
}

.splide__pagination {
    bottom: -4.8rem;
}

.splide__pagination__page.is-active {
    background: var(--red);
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 5rem;
    padding: 0 2.5rem;
    background-color: var(--yellow);
    color: var(--dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-family: var(--font-main);
    font-size: 1.6rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

/* Katalog Section */
.katalog {
    padding: 8rem 0;
}

.katalog-title {
    text-align: center;
    margin-bottom: 4rem;
}

.katalog-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

@media screen and (max-width: 1024px) {
    .katalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .katalog-grid {
        grid-template-columns: 1fr;
    }
}

.katalog-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--white);
    padding: 3.2rem;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.katalog-item:hover {
    transform: translateY(-5px);
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.katalog-item-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: 0;
    margin-bottom: 2.4rem;
}

.katalog-item-name {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}



.katalog-footer {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Mapa Odvozu Section */
.mapa-odvozu {
    background-color: var(--white);
    background-image: url('img/bg-pattern.png');
    background-repeat: repeat-x;
    background-position: top left;
    padding: 8rem 0;
    border-bottom: 1px solid var(--border);
}

.mapa-odvozu .container {
    display: flex;
    align-items: center;
    gap: 8rem;
}

.mapa-odvozu-img {
    max-width: 50%;
    max-height: 260px;
}

.mapa-odvozu-item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mapa-odvozu-content {
    flex: 1;
}

.mapa-odvozu-title {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--blue);
    font-size: 2rem;
}

.mapa-odvozu-content h3 {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 3.2rem;
    font-weight: 600;
}

.mapa-odvozu-content p {
    font-size: 1.6rem;
    line-height: 1.8;
}

.mapa-odvozu-content strong {
    display: block;
    margin-bottom: 1.6rem;
    color: var(--darker);
}

@media screen and (max-width: 1024px) {
    .mapa-odvozu .container {
        flex-direction: column;
        text-align: center;
        gap: 4.8rem;
    }

    .mapa-odvozu-img {
        max-width: 100%;
        order: 2;
    }

    .mapa-odvozu-content {
        order: 1;
    }

    .mapa-odvozu-title {
        text-align: center;
    }
}

/* E-shop Section */
.eshop {
    position: relative;
    background: linear-gradient(to bottom, var(--yellow) 0%, var(--yellow) calc(100% - 20rem), var(--white) calc(100% - 20rem), var(--white) 100%);
    padding: 8rem 0;
    z-index: 1;
}

.eshop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/bg-pattern-yellow.png') repeat-x left 0 bottom 20rem;
    opacity: 0.90;
    z-index: -1;
    pointer-events: none;
}

.eshop-title {
    text-align: center;
    margin-bottom: 4rem;

    font-weight: 700;
}

.eshop-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1px;
    background-color: var(--border);
    border: 1px solid var(--border);
}

.eshop-item-big {
    position: relative;
    background-color: var(--white);
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    aspect-ratio: 1 / 1;
}

.eshop-item-big .eshop-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eshop-item-big-content {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3.2rem;
    color: var(--white);
    text-align: center;
}

.eshop-item-big .eshop-item-title {
    color: var(--white);
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 2.4rem;
}

.eshop-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1px;
    background-color: var(--border);
}

.eshop-item {
    background-color: var(--white);
    padding: 2.4rem;
    border-radius: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    aspect-ratio: 1 / 1;
    text-decoration: none;
    color: inherit;
}

.eshop-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.eshop-item .eshop-item-img {
    height: 8rem;
    width: auto;
    margin-bottom: 1.6rem;
    object-fit: contain;
}

.eshop-item .eshop-item-title {
    font-size: 1.6rem;
    font-weight: 700;
}

@media screen and (max-width: 1024px) {
    .eshop-grid {
        grid-template-columns: 1fr;
    }

    .eshop-item-big {
        aspect-ratio: 16 / 9;
    }

    .eshop-grid-inner {
        grid-template-rows: auto;
    }
}

@media screen and (max-width: 600px) {
    .eshop-item-big {
        aspect-ratio: 4 / 3;
    }

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

    .eshop-item-big-content {
        padding: 2rem;
    }

    .eshop-item-title {
        font-size: 1.8rem;
    }
}

/* Likvidace Section */
.likvidace {
    background-color: var(--dark);
    background-image: url('img/bg-likvidace.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 8rem 0;
}

.likvidace-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
    font-weight: 700;
}

.likvidace-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
}

.likvidace-item {
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px solid var(--yellow);
    padding: 4.8rem;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.likvidace-item:hover {
    transform: translateY(-1rem);
    background-color: rgba(255, 255, 255, 0.1);
}

.likvidace-item-img {
    height: 12rem;
    width: auto;
    margin-bottom: 3.2rem;
    object-fit: contain;
}

.likvidace-item-title {
    font-size: 2.2rem;
    margin-bottom: 2.4rem;
    color: var(--white);
}

.likvidace-item p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 3.2rem;
    color: rgba(255, 255, 255, 0.8);
    flex-grow: 1;
}

@media screen and (max-width: 1024px) {
    .likvidace-grid {
        grid-template-columns: 1fr;
        max-width: 60rem;
        margin: 0 auto;
    }
}

/* Blog Section */
.blog {
    padding: 8rem 0;
    border-top: 6px solid var(--yellow);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.blog-title {
    margin-bottom: 0;
    text-align: left;
}

.btn-light {
    background-color: var(--light);
    color: var(--dark);
    height: 4.8rem;
    padding: 0 2.4rem;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
}

.blog-item {
    display: flex;
    flex-direction: column;
}

.blog-item-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 0rem;
}

.blog-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-item-img {
    transform: scale(1.05);
}

.blog-item-date {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    background-color: var(--white);
    color: var(--dark);
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.blog-item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-item-title {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 1.6rem;
    font-weight: 700;
}

.blog-item-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-item-title a:hover {
    color: var(--yellow-dark);
}

.blog-item-excerpt {
    font-size: 1.5rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.4rem;
    }
}

/* CTA Split Section */
.cta-split {
    background: linear-gradient(to bottom, var(--white) 0, var(--white) 80px, var(--light) 80px, var(--light) 100%);
    padding-top: 0;
}

.cta-split-container {
    display: flex;
    gap: 2rem;
}

.cta-card {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 4rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38rem;
}

.cta-content {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 4.8rem;
    color: var(--white);
    max-width: 52rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-title {
    color: var(--white);
    margin-bottom: 2.4rem;
    font-size: 3.2rem;
    font-weight: 700;
}

.cta-list {
    margin-bottom: 3.2rem;
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.cta-list li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 0rem;
    font-size: 1.6rem;
    font-weight: 500;
}

.cta-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 8px;
    height: 8px;
    background-color: var(--yellow);
    border-radius: 50%;
}

.cta-text {
    font-size: 1.6rem;
    margin-bottom: 3.2rem;
    line-height: 1.6;
}

@media screen and (max-width: 1024px) {
    .cta-split-container {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .cta-card {
        padding: 2rem 2.4rem;
    }

    .cta-content {
        padding: 3.2rem 2.4rem;
    }

    .cta-title {
        font-size: 2.4rem;
    }
}

/* Footer Section */
.site-footer {
    color: var(--white);
    font-size: 1.5rem;
    background-color: #151D1F;
    font-family: var(--font-main);
    position: relative;
    z-index: 1;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/bg-pattern-light.png');
    background-repeat: repeat-x;
    background-position: bottom;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

.footer-top {
    padding: 0rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.footer-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/header-bg.png');
    background-repeat: repeat;
    opacity: 0.06;
    z-index: -1;
}

.footer-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    position: relative;
}

.footer-logo img {
    height: 140px;
    width: auto;
}

.footer-contacts-hl {
    display: flex;
    gap: 4rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.contact-icon-yellow {
    background-color: var(--yellow);
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon-yellow img {
    width: 2rem;
    height: auto;
}

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

.contact-text strong {
    font-size: 1.8rem;
    font-family: var(--font-headings);
    color: var(--white);
    line-height: 1.2;
    font-weight: 600;
}

.contact-text span {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0rem;
}

.btn-outline-yellow {
    background-color: transparent;
    color: var(--yellow);
    border: 1px solid var(--yellow);
    font-size: 1.5rem;
    height: 4.8rem;
    padding: 0 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.footer-main {
    padding: 6.4rem 0 0 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.2rem;
    margin-bottom: 6rem;
}

.footer-heading {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 2.4rem;
    padding-left: 1.6rem;
    border-left: 3px solid var(--yellow);
    font-family: var(--font-main);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.footer-col p.text-yellow {
    color: var(--yellow);
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.footer-table {
    width: 100%;
    color: rgba(255, 255, 255, 0.7);
    border-collapse: collapse;
}

.footer-table td {
    padding-bottom: 1.2rem;
    vertical-align: top;
}

.footer-table td:last-child {
    text-align: left;
    padding-left: 2rem;
}

.footer-table .text-yellow {
    color: var(--yellow);
    font-weight: 500;
}

.footer-ctas {
    display: flex;
    gap: 2rem;
    padding-bottom: 6rem;
}

.footer-cta-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2.4rem;
    border-radius: 4px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-box:hover {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.footer-cta-icon {
    height: 3.2rem;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    padding: 3rem 0;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.signature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.signature img {
    height: 2.2rem;
    width: auto;
    margin-top: -5px;
}

/* Responsive Footer */
@media screen and (max-width: 1024px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-ctas {
        flex-wrap: wrap;
    }

    .footer-cta-box {
        flex-basis: calc(50% - 1rem);
    }

    .footer-top-container {
        flex-direction: column;
        gap: 3.2rem;
        padding-bottom: 2rem;
    }

    .footer-logo {
        margin-top: 0;
    }
}

@media screen and (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-cta-box {
        flex-basis: 100%;
    }

    .footer-contacts-hl {
        flex-direction: column;
        gap: 2rem;
    }

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

    .footer-main {
        padding: 5rem 0 0 0;
    }
}

/* Header Section */
.header-top-bar {
    background-color: var(--blue);
    color: var(--white);
    text-align: center;
    padding: .8rem 2rem;
    font-size: 1.5rem;
    font-family: var(--font-main);
    font-weight: 400;
}

.site-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1002;
}

.site-header {
    background-color: #111417;
    position: relative;
    border-bottom: 4px solid var(--yellow);
    z-index: 10;
}

.site-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/header-bg.png');
    background-repeat: repeat;
    opacity: 0.06;
    z-index: -1;
    pointer-events: none;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 9rem;
}

.header-logo {
    display: block;
    position: absolute;
    top: 0;
    left: 2rem;
    z-index: 11;
}

.header-logo img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

.header-nav {
    margin: 0 20px;
    flex-grow: 1;
    justify-content: flex-end;
    display: flex;
}

.header-nav ul {
    display: flex;
    gap: 3.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: var(--font-headings);
}

.header-nav a:hover {
    color: var(--yellow);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-header {
    height: 4rem;
    padding: 0 2rem;
}

.header-search-btn {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.header-search-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.header-search-btn img {
    width: 1.8rem;
    height: 1.8rem;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 2.1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

@media screen and (max-width: 1200px) {
    .menu-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -30rem;
        width: 30rem;
        height: 100vh;
        background-color: #111417;
        z-index: 1001;
        flex-direction: column;
        justify-content: flex-start;
        padding: 10rem 4rem;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        margin: 0;
        justify-content: center;
    }

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

    .header-nav ul {
        flex-direction: column;
        gap: 3rem;
    }

    .header-nav a {
        font-size: 2rem;
    }

    .header-logo {
        left: 1rem;
    }

    .header-logo img {
        height: 90px;
    }

    .btn-header {
        display: none;
    }

    .header-actions {
        flex-grow: 1;
        justify-content: flex-end;
    }

    /* On mobile: site-header fixed at top, top-bar flows below and scrolls away */
    .site-header-wrapper {
        position: static;
        display: block;
        padding-top: 7rem; /* matches .header-container height on mobile */
    }

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1002;
    }

    .header-top-bar {
        padding: 0.8rem 1rem;
        font-size: 1.4rem;
    }

    .header-container {
        height: 7rem;
    }
}

/* ------------------------------------- */
/* Autoservis Page */
/* ------------------------------------- */

.breadcrumbs {
    padding: 2rem 0;
    font-size: 1.4rem;
    color: var(--dark);
    font-family: var(--font-main);
}

.breadcrumbs a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 400;
}

.breadcrumbs span {
    font-weight: 500;
}

.autoservis-hero {
    padding-top: 0;
    padding-bottom: 2rem;
}

.autoservis-hero-inner {
    position: relative;
    height: 100%;
    aspect-ratio: 16/5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.autoservis-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.autoservis-hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.autoservis-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.autoservis-hero-content h1 {
    font-size: 3.2rem;
    font-family: var(--font-headings);
    font-weight: 700;
    margin: 0;
}

.autoservis-features {
    padding: 6rem 0 0 0;
    background-color: var(--white);
}

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

.feature-box {
    display: flex;
    align-items: center;
    background-color: #F8F9FA;
    padding: 4rem 3rem;
    border-radius: 8px;
    gap: 2rem;
}

.feature-icon {
    display: flex;
}

.feature-icon img {
    height: 4.5rem;
    width: 4.5rem;
    flex-shrink: 0;
    display: flex;
}

.feature-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font-headings);
    line-height: 1.3;
}

.autoservis-services {
    background: linear-gradient(to bottom,
            var(--light) 0%,
            var(--light) calc(100% - 200px),
            var(--white) calc(100% - 200px),
            var(--white) 100%);
    padding: 10rem 0;
    margin-top: 6rem;
}

.services-container {
    display: flex;
    gap: 8rem;
    align-items: stretch;
}

.services-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-subtitle {
    font-size: 2.4rem;
    font-family: var(--font-headings);
    color: rgba(51, 58, 69, 0.5);
    /* grayish text */
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.services-title {
    font-size: 3.6rem;
    font-family: var(--font-headings);
    color: var(--dark);
    font-weight: 700;
    margin: 0 0 4rem 0;
}

.services-img-wrapper {
    width: 100%;
    flex-grow: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    min-height: 48rem;
}

.services-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-right {
    flex: 1;
    padding-top: 10rem;
}

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

.services-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    color: var(--dark);
    font-family: var(--font-main);
    font-weight: 500;
}

.services-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 1.3rem;
    height: 1.3rem;
    background-color: var(--yellow);
    border-radius: 50%;
}

@media screen and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-container {
        flex-direction: column;
        gap: 4rem;
    }

    .services-right {
        padding-top: 0rem;
    }

    .services-img-wrapper {
        min-height: 30rem;
    }
}

@media screen and (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .autoservis-hero-content h1 {
        font-size: 3.2rem;
    }

    .services-title {
        font-size: 2.8rem;
    }
}

/* ------------------------------------- */
/* Nahradni Dily Page */
/* ------------------------------------- */

.nahradni-hero {
    padding: 2rem 0 0rem 0;
    background: linear-gradient(to top, var(--light) 0, var(--light) 80px, var(--white) 80px, var(--white) 100%);
}

.nahradni-hero .cta-card {
    min-height: 40rem;
    border-radius: 0px;
    overflow: hidden;
}



.nahradni-hero .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nahradni-hero .cta-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.nahradni-features {
    background-color: var(--light);
    padding: 8rem 0;
}

.nahradni-features-main-title {
    text-align: center;
    color: var(--dark);
    font-family: var(--font-headings);
    font-weight: 700;
    margin-bottom: 6rem;
}

.nahradni-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.nahradni-feature-card {
    background-color: var(--white);
    padding: 5rem 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.nahradni-feature-icon {
    width: 6.4rem;
    height: 6.4rem;
    margin-bottom: 3rem;
    object-fit: contain;
}

.nahradni-feature-title {
    font-size: 2.2rem;
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.nahradni-feature-text {
    font-size: 1.5rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 3.5rem;
    flex-grow: 1;
}

@media screen and (max-width: 1024px) {
    .nahradni-hero .cta-split-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nahradni-features-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

/* ------------------------------------- */
/* Modal Poptávkový formulář */
/* ------------------------------------- */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(11, 14, 21, 0.85);
    /* Dark overlay matching var(--dark) */
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background-color: var(--white);
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    padding: 4rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.is-open .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 3.2rem;
    line-height: 1;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
}

.modal-close:hover {
    color: var(--dark);
}

.modal-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-subtitle {
    color: var(--gray);
    font-size: 1.6rem;
    margin-bottom: 3rem;
}

/* Modal Form Styles */
.poptavka-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group label {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--darker);
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.6rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background-color: var(--white);
    font-size: 1.6rem;
    font-family: var(--font-main);
    color: var(--dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A0A0A0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow-dark);
    box-shadow: 0 0 0 3px var(--yellow-l);
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 1.6rem center;
    background-size: 16px;
    padding-right: 4rem;
}

.btn-submit {
    margin-top: 1rem;
    width: 100%;
}

@media screen and (max-width: 600px) {
    .modal-box {
        padding: 3rem 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ========================================= */
/* Likvidace Page                            */
/* ========================================= */

/* --- Likvidace Hero --- */
.likvidace-hero {
    position: relative;
    background-color: var(--white);
    color: var(--white);
    padding: 0;
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
}

.likvidace-hero-bg {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 1;
}

.likvidace-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 8rem;
    gap: 4rem;
}

.likvidace-hero-content {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 4rem;
    color: var(--white);
    max-width: 66rem;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.likvidace-hero-title {
    font-size: 3.4rem;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.likvidace-hero-text {
    font-size: 2rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    max-width: 550px;
    font-weight: 300;
}

.likvidace-hero-action {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 3rem;
    justify-content: space-between;
}

.likvidace-action-label {
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1.4;
}

.btn-phone {
    font-size: 2rem;
    font-weight: 600;
    padding: 1.5rem 3rem;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    border-radius: 8px;
}

.btn-icon {
    width: 2.4rem;
    height: 2.4rem;
}

.likvidace-hero-form {
    background-color: var(--white);
    border-radius: 4px;
    padding: 5rem 4rem;
    text-align: center;
    flex-shrink: 0;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--dark);
}

.likvidace-hero-form .form-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.likvidace-hero-form .form-subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

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

.likvidace-hero-form .form-group input {
    width: 100%;
    padding: 1.4rem 1.6rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1.5rem;
    background-color: #fafafa;
    transition: border-color 0.2s;
}

.likvidace-hero-form .form-group input:focus {
    border-color: var(--yellow-dark);
    outline: none;
    background-color: var(--white);
}

.likvidace-hero-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    margin-top: 0.5rem;
}

.likvidace-hero-form .form-checkbox input {
    margin-top: 0.4rem;
}

.likvidace-hero-form .form-checkbox label {
    font-size: 1.4rem;
    color: var(--gray);
    line-height: 1.4;
    cursor: pointer;
}

.likvidace-hero-form .btn-submit {
    margin-top: 1rem;
    width: 100%;
    padding: 1.6rem;
    font-size: 1.6rem;
    font-weight: 500;
    display: flex;
    gap: 1rem;
}

/* Badges below hero */
.likvidace-hero-badges {
    position: relative;
    z-index: 2;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
}

.likvidace-badges-grid {
    display: flex;
    justify-content: center;
    gap: 0;
}

.likvidace-badge {
    flex: 1;
    text-align: center;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid var(--border);
}

.likvidace-badge:last-child {
    border-right: none;
}

.likvidace-badge .badge-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.likvidace-badge .badge-icon img {
    width: 100%;
    height: auto;
    /* ensure we can use green if it's svg, but let's assume it's just an icon */
    filter: brightness(0) saturate(100%) invert(47%) sepia(91%) saturate(302%) hue-rotate(99deg) brightness(88%) contrast(93%);
    /* approx var(--green) if icon is black */
}

.likvidace-badge-label {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--green);
    font-family: var(--font-headings);
    ;
    margin-bottom: 0.5rem;
}

.likvidace-badge-value {
    font-size: 1.5rem;
    color: var(--dark);
    line-height: 1.4;
}

/* --- Likvidace Pricing --- */
.likvidace-pricing {
    background-color: var(--dark);
    background-image: url(img/bg-likvidace.png);
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 8rem 0;
}

.likvidace-pricing-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 7600;
    color: var(--white);
    margin-bottom: 4rem;
}

.likvidace-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.likvidace-pricing-card {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--yellow);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}



.likvidace-pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}


.likvidace-pricing-img {
    height: 12rem;
    width: auto;
    object-fit: contain;
    margin: 4.8rem auto 0 auto;

}


.likvidace-pricing-content {
    padding: 3rem;
    color: var(--white);
}

.likvidace-pricing-heading {
    font-size: 2.2rem;
    font-family: var(--font-headings);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.4;
    text-align: center;
}

.likvidace-pricing-heading strong {
    font-weight: 700;
    font-size: 2.2rem;
}

.text-yellow {
    color: var(--yellow);
}

.text-green {
    color: var(--green);
}

.likvidace-pricing-sub {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 0.5rem;
    text-align: center;
}

.likvidace-pricing-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 2rem 0;
}

.likvidace-pricing-desc {
    font-size: 1.6rem;
    color: var(--light);
    line-height: 1.6;
    margin-top: 2rem;
}

/* --- Likvidace Steps --- */
.likvidace-steps {
    padding: 8rem 0;
}

.likvidace-steps-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4rem;
}

.likvidace-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.likvidace-step {
    text-align: left;
    padding: 3rem 4rem;
    outline: 1px solid var(--border);
}

.likvidace-step-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--yellow);
    border-radius: 50%;
    padding: 2rem;
}

.likvidace-step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* black icon color */
    filter: brightness(0) saturate(100%);
}

.likvidace-step-heading {
    font-size: 2rem;
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.likvidace-step-subheading {
    font-size: 1.4rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.likvidace-step-text {
    font-size: 1.6rem;
    color: var(--gray);
    line-height: 1.6;
}

.likvidace-step-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--blue);
    /* Blue link */
    text-decoration: none;
    transition: color 0.2s ease;
}

.likvidace-step-link:hover {
    color: var(--dark);
}

/* --- Likvidace Eco Banner --- */
.likvidace-eco {
    background-color: var(--yellow);
    padding: 6rem 0;
}

.likvidace-eco .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

@media screen and (max-width: 900px) {
    .likvidace-eco .container {
        flex-direction: column;
        text-align: center;
    }
}

.likvidace-eco-content {
    flex: 1;
}

.likvidace-eco-title {
    font-size: 2.6rem;
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 1rem;
    max-width: 60rem;
}

.likvidace-eco-text {
    font-size: 1.6rem;
    color: var(--dark);
    font-weight: 400;
}

.likvidace-eco-logos {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: transparent;
}

.likvidace-eco-logos img {
    height: 75px;
    background-color: white;
    /* Logos are in white boxes in screenshot */
    padding: 1rem 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* --- Likvidace FAQ --- */
.likvidace-faq {
    padding: 8rem 0;
}

.likvidace-faq-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5rem;
}

.faq-list {
    max-width: 100%;
    margin: 0 auto;

}

.faq-item {
    border-bottom: 1px solid var(--border);
    background-color: var(--light);
    padding: 1.5rem 3rem;
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: var(--font-headings);
    color: var(--dark);
    padding: 2.4rem 4rem 2.4rem 0;
    cursor: pointer;
    position: relative;
    list-style: none;
    transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--gray);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: "−";
    color: var(--yellow-dark);
}

.faq-question:hover {
    color: var(--yellow-dark);
}

.faq-answer {
    padding: 0 0 2.4rem 0;
}

.faq-answer p {
    font-size: 1.6rem;
    color: var(--dark);
    line-height: 1.7;
}

/* --- Likvidace Responsive --- */
@media screen and (max-width: 1024px) {
    .likvidace-hero-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .likvidace-hero-text {
        max-width: 100%;
    }

    .likvidace-hero-buttons {
        justify-content: center;
    }

    .likvidace-hero-form-cta {
        width: 100%;
        max-width: 400px;
    }

    .likvidace-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

@media screen and (max-width: 600px) {
    .likvidace-hero-title {
        font-size: 3rem;
    }

    .likvidace-hero-phone a {
        font-size: 2.8rem;
    }

    .likvidace-badges-grid {
        flex-direction: column;
    }

    .likvidace-badge {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .likvidace-badge:last-child {
        border-bottom: none;
    }

    .likvidace-steps-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 1.6rem;
    }
}

/* --- Blog Homepage Section --- */
.blog {
    padding: 8rem 0;
    background-color: var(--white);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.blog-title {
    margin-bottom: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.blog-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    background-color: var(--light);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-item-img-container {
    position: relative;
    aspect-ratio: 16/9;
}

.blog-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.blog-item-content {
    padding: 2.4rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-item-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    color: var(--dark);
    transition: color 0.3s ease;
}

.blog-item:hover .blog-item-title {
    color: var(--yellow-dark);
}

.blog-item-excerpt {
    font-size: 1.5rem;
    color: var(--gray);
    line-height: 1.6;
}

@media screen and (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Blog Page Styles --- */
.blog-list-section {
    padding: 4rem 0 8rem;
}

.blog-list-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 4rem;
    font-family: var(--font-headings);
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 6rem;
}

.blog-row {
    display: flex;
    background-color: var(--light);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    margin-bottom: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-row-image {
    width: 40%;
    min-width: 300px;
    height: auto;
}

.blog-row-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-row-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
}

.blog-row-content h2 {
    padding-bottom: 3rem;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

.blog-row-content p {
    color: var(--gray);
    font-size: 1.4rem;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-row-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    margin-top: auto;
}

.blog-row-bottom time {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    padding: 0.8rem 1.5rem;
    background: var(--white);
}

.blog-row .btn {
    padding: 0 3rem;
    height: 4.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border: 1px solid var(--border);
    background-color: var(--white);
    color: var(--dark);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-item:hover {
    border-color: var(--dark);
}

.pagination-item.active {
    background-color: #333A45;
    color: var(--white);
    border-color: #333A45;
}

@media screen and (max-width: 768px) {
    .blog-row {
        flex-direction: column;
    }

    .blog-row-image {
        width: 100%;
        min-width: auto;
        aspect-ratio: 16/9;
    }

    .blog-row-content {
        padding: 2.4rem;
    }
}

/* --- Blog Detail Page --- */
.blog-detail-section {
    padding: 6rem 0 12rem;
}

.blog-detail-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-detail-title {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
    color: var(--dark);
}

.blog-detail-meta {
    font-size: 1.4rem;
    color: var(--gray);
}

.blog-detail-hero {
    width: 100%;
    max-width: 940px;
    margin: 0 auto 6rem;
}

.blog-detail-hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-detail-content {
    max-width: 72rem;
    margin: 0 auto 8rem;
}

.blog-detail-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 3.2rem;
}

.blog-detail-content blockquote {
    margin: 5rem 0;
    text-align: center;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--gray);
    position: relative;
    padding: 0 4rem;
}

.blog-detail-footer {
    display: flex;
    justify-content: center;
    padding-top: 6rem;
    border-top: 1px solid var(--border);
}

@media screen and (max-width: 768px) {
    .blog-detail-title {
        font-size: 2.8rem;
    }

    .blog-detail-section {
        padding: 4rem 0 8rem;
    }
}

/* Breadcrumbs Section */
.breadcrumbs {
    padding: 3rem 0 1rem;
}

.breadcrumbs-inner {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.4rem;
    color: var(--gray);
}

.breadcrumbs-inner a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs-inner a:hover {
    color: var(--dark);
}

.breadcrumbs-separator {
    color: #CCC;
    user-select: none;
    font-size: 1.8rem;
    margin-top: -2px;
}

.breadcrumbs-inner .current {
    color: var(--dark);
}

/* --- Autovrakoviste Sidebar --- */
.vrakoviste-layout {
    display: flex;
    gap: 4rem;
    padding: 4rem 0 8rem;
}

.vrakoviste-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-toggle-btn {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background-color: var(--dark);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 0rem;
    transition: background-color 0.3s ease;
}

.sidebar-toggle-btn:hover {
    background-color: #2A2D33;
}

.sidebar-toggle-btn svg {
    transition: transform 0.3s ease;
}

.sidebar-toggle-btn.active svg {
    transform: rotate(180deg);
}

.sidebar-content {
    display: block;
}

.sidebar-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-box {
    position: relative;
    margin-bottom: 3rem;
}

.search-box input {
    width: 100%;
    padding: 1.2rem 4.5rem 1.2rem 1.5rem;
    border: 1px solid var(--dark);
    border-radius: var(--border-radius);
    font-size: 1.5rem;
}

.search-box .search-btn {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray);
}

.category-list {
    background-color: #1A1D23;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.category-list li {
    transition: background-color 0.3s ease;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-list li:hover {
    background-color: #2A2D33;
}

.category-list li.active {
    background-color: #7D7D7D;
}

.category-list .count {
    background-color: var(--white);
    color: var(--dark);
    font-size: 1.1rem;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
}

/* --- Autovrakoviste Content --- */
.vrakoviste-main {
    flex: 1;
}

.vrakoviste-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.model-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
}

.model-card:hover {
    border-color: var(--dark);
    background-color: var(--light);
}

.model-card img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.model-card span {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    margin-bottom: 3rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 1.3rem;
    color: var(--gray);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.product-card {
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-img {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: var(--light);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 2.5rem;
}

.product-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-specs {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.product-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.product-status img {
    width: 18px;
    height: 18px;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 1.2rem;
    color: var(--gray);
    text-decoration: line-through;
}

.current-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--red);
    line-height: 1;
}

.product-card-footer .btn {
    height: 4.2rem;
    padding: 0 1.8rem;
    font-size: 1.5rem;
    font-weight: 500;
}

@media screen and (max-width: 1200px) {
    .vrakoviste-layout {
        flex-direction: column;
    }

    .vrakoviste-sidebar {
        width: 100%;
    }

    .sidebar-toggle-btn {
        display: flex;
    }

    .sidebar-content {
        display: none;
        margin-top: 1rem;
    }

    .sidebar-content.active {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

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

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

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

@media screen and (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

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


.filter-bar .pagination {
    margin: 0;
}

.filter-bar span {
    font-size: 1.5rem;
}

/* --- Product Detail Page --- */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 8rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--border);
}

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

.detail-badge-red {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--red);
    color: var(--white);
    padding: 0.8rem;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    z-index: 2;
}

.detail-badges-left {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.badge-tag-item {
    padding: 0.4rem 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
}

.badge-tag-item.sleva {
    background-color: var(--red);
    color: var(--white);
}

.badge-tag-item.bestseller {
    background-color: var(--yellow);
    color: var(--dark);
}

.thumb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.thumb-item {
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.thumb-item:hover {
    border-color: var(--dark);
    opacity: 0.8;
}

.thumb-item.active {
    border: 2px solid var(--yellow);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.detail-info-wrap h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0rem;
}

.detail-subtitle {
    font-size: 2.8rem;
    color: var(--gray);
    margin-bottom: 3rem;
    font-weight: 600;
}

.blue-info-box {
    background-color: var(--blue);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.blue-info-box h4 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.blue-info-phone {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.blue-info-text {
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.btn-koupit {
    width: 100%;
    height: 5.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 4rem;
}

.product-description-wrap {
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
}

.description-header {
    padding: 1.5rem 2.5rem;
    background-color: var(--light);
    border-bottom: 1px solid var(--border);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description-content {
    padding: 3rem 2.5rem;
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--dark);
}

.description-content p {
    margin-bottom: 2rem;
}

/* Contact Form Section */
.vrakoviste-contact-section {
    background-color: #F9F9F9;
    border: 1px solid var(--dark);
    padding: 6rem;
    margin-bottom: 8rem;
}

.contact-form-header {
    margin-bottom: 4rem;
}

.contact-form-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-form-header p {
    font-size: 1.5rem;
    color: var(--gray);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}


.contact-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gdpr-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    color: var(--dark);
}

.gdpr-wrap input {
    width: 1.8rem;
    height: 1.8rem;
}

.btn-send-form {
    padding: 0 4rem;
    height: 5rem;
    font-weight: 500;
}

@media screen and (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }

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

    .vrakoviste-contact-section {
        padding: 3rem;
        margin: 0;
    }

    .contact-form-footer {
        flex-direction: column;
        gap: 3rem;
        align-items: flex-start;
    }
}

.contact-grid-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

@media screen and (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.contact-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.contact-card-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3.5rem;
    font-family: var(--font-headings);
    line-height: 1.3;
    flex-grow: 1;
}

.contact-card-phone-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-card-phone-icon {
    width: 48px;
    height: 48px;
    background-color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-phone-icon img {
    width: 20px;
    height: 20px;
}

.contact-card-phone-numbers {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-card-phone-numbers a {
    color: var(--dark);
    text-decoration: none;
    font-size: 1.6rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-card-phone-numbers a:hover {
    color: var(--dark);
}

/* Contact Section Details */
.contact-section-details {
    padding: 8rem 0;
    background-color: var(--white);
}

.contact-section-details.--light {
    background-color: var(--light);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.contact-map {
    width: 100%;
    min-height: 480px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2.4rem;
}

.contact-info p {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-address {
    margin-bottom: 2.4rem;
}

.contact-ident {
    margin-bottom: 3.2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon img,
.contact-info-icon svg {
    width: 20px;
    height: 20px;
    color: var(--dark);
}

.contact-info-text {
    display: flex;
    flex-direction: column;
}

.contact-info-text a {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.contact-info-text span {
    font-size: 1.4rem;
    color: var(--gray);
}

.contact-hours p {
    margin-bottom: 0.5rem;
}

.contact-services {
    margin-bottom: 6rem;
}

.contact-services h3 {
    font-size: 2.2rem;
    margin-bottom: 2.4rem;
    font-family: var(--font-headings);
    font-weight: 700;
}

.contact-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-badge {
    background-color: var(--white);
    padding: 2.4rem;
    font-size: 1.6rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
}

.service-badge .dot {
    width: 8px;
    height: 8px;
    background-color: var(--yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-gallery a {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.contact-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.contact-gallery a:hover img {
    transform: scale(1.05);
}

@media screen and (max-width: 1024px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-map {
        min-height: 350px;
    }

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

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

@media screen and (max-width: 600px) {
    .contact-services-grid {
        grid-template-columns: 1fr;
    }

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


.footer-logo {

    width: 360px;
    height: 130px;
    height: auto;
    margin-bottom: -30px;
    flex-shrink: 0;
    max-width: 100%;
}

.footer-logo img {
    height: 100%;
}

.footer-top-btn .btn-outline-yellow {
    padding: 0 2.2rem;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 14, 21, 0.85);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(-20px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-container {
    position: relative;
    max-width: 800px;
    width: 100%;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 3.2rem;
    padding: 1.6rem 6rem 1.6rem 0;
    font-family: var(--font-headings);
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--yellow);
}

.search-submit {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
}

.search-submit img {
    width: 3.2rem;
    height: 3.2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.search-submit:hover img {
    opacity: 1;
}

.search-close {
    position: absolute;
    top: -8rem;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 4rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.search-close:hover {
    opacity: 1;
}

body.search-open {
    overflow: hidden;
}

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

    .search-close {
        top: -6rem;
    }
}

@media screen and (max-width: 1200px) {
    .hero-content {
        width: 100%;
        height: 100%;
        bottom: 0;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 3rem;
        position: relative;
    }

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

@media screen and (max-width: 768px) {
    .hero-cell {
        aspect-ratio: initial;
    }

    .hero {
        padding: 10px;
    }

    .hero-container {
        gap: 10px;
    }

    .eshop-item {
        padding: 2rem 1.5rem;
        aspect-ratio: initial;
    }

    .eshop,
    .likvidace,
    .mapa-odvozu,
    .katalog,
    .testimonials,
    .blog,
    .likvidace-faq,
    .likvidace-pricing,
    .nahradni-features {
        padding: 6rem 0;
    }

    .katalog-title {

        text-align: center;
        margin-bottom: 4rem;

    }

    .cta-split {
        padding: 1rem 0;
    }
}

@media screen and (max-width: 1024px) {
    .blog-grid .blog-item:last-child {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .katalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .katalog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

    .filter-bar span {
        display: none;
    }
}

.likvidace-eco-logos {
    flex-wrap: wrap;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .likvidace-hero-bg {
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;

    }

    .likvidace-hero-container {
        padding: 3rem;
    }

    .likvidace-hero-text {
        margin-bottom: 2rem;
    }
}

.likvidace-hero-action .btn-phone {
    white-space: nowrap;
}

.likvidace-hero-action .btn-phone:hover {
    background-color: var(--yellow-dark);
    color: var(--dark);
}

.likvidace-hero-action {
    flex-wrap: wrap;
    justify-content: center;
}

@media screen and (max-width: 600px) {
    .likvidace-hero-container {
        padding: 2rem;
        gap: 0rem;
    }

    .likvidace-hero-content {
        padding: 2.5rem;
    }
}

@media screen and (max-width: 400px) {
    .likvidace-hero-container {
        padding: 0rem;
        gap: 0rem;
    }

    .eshop-item-big .eshop-item-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}