footer {
    background-color: rgba(14, 86, 62, 1) !important;
    color: white;
    padding: 60px 40px 40px;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
    color: white !important;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-left h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.footer-left p {
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 17px;
}

.footer-left p strong {
    font-weight: 700;
}

.awards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-top: 40px;
}

.award {
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.award-text {
    font-size: 9px;
    color: rgba(14, 86, 62, 1);
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
}

.award-year {
    font-size: 28px;
    color: rgba(14, 86, 62, 1);
    font-weight: 900;
    margin: 2px 0;
}

.award-label {
    font-size: 7px;
    color: rgba(14, 86, 62, 1);
    font-weight: 600;
}

.footer-right h2 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: white !important;
    text-decoration: underline !important;
    font-size: 17px;
    ;
    border-bottom: 1px solid transparent;
    display: inline-block;
    transition: border-color 0.3s;
    text-underline-offset: 7px;
}



.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    background-color: rgba(14, 86, 62, 1) !important;
}

.social-payment {
    display: flex;
    align-items: center;
    gap: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white !important;
    font-size: 24px;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

.divider {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.payment-methods {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-methods img {
    height: 24px;
}

footer .copyright {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Social icons jako text */
.icon-facebook::before {
    content: 'f';
    font-family: Arial;
    font-weight: bold;
}

.icon-instagram::before {
    content: '📷';
}

/* Responsive */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .awards {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .award-year {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    footer {
        padding: 40px 20px 30px;
    }

    .footer-content {
        gap: 40px;
    }

    .awards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .social-payment {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .divider {
        display: none;
    }
}

/* Payment logos jako placeholdery */
.visa-logo,
.mastercard-logo {
    width: 50px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: rgba(14, 86, 62, 1);
    font-size: 11px;
}

/* USP Section - horní část footeru */
.footer-usp {
    background: #e8e4dc;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.usp-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.usp-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.usp-item:nth-child(1) .usp-icon {
    background-image: url('/user/documents/css/footer/vyhoda1.png');
}

.usp-item:nth-child(2) .usp-icon {
    background-image: url('/user/documents/css/footer/vyhoda2.png');
}

.usp-item:nth-child(3) .usp-icon {
    background-image: url('/user/documents/css/footer/vyhoda3.png');
}

.usp-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.usp-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    text-align: left;
}

.usp-item p strong {
    font-weight: 700;
    display: block;
}

/* Responsive - Tablet */
@media (max-width: 968px) {
    .footer-usp {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 50px 30px;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .footer-usp {
        padding: 40px 20px;
        gap: 40px;
    }

    .usp-icon {
        width: 100px;
        height: 100px;
    }

    .usp-item h3 {
        font-size: 18px;
    }

    .usp-item p {
        font-size: 14px;
    }

    .type-page header h1 {
        padding-left: 20px !important;
    }

    .text-block {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .about-flex div p,
    h1 {
        padding-left: 20px !important;
    }

    blockquote {
        margin: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.about-citat {
    padding: 90px;
    padding-left: 40px;
}

.about-flex {
    display: flex;
    flex-wrap: wrap;
}

.about-flex div {
    width: 50%;
    background-color: #f1eeeb;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-flex div img {
    height: 100%;
    object-fit: cover;
}

.about-flex div p,
h1 {
    padding: 30px;
    padding-left: 40px;
    padding-right: 40px;
}

.about-citat {
    padding: 0 !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.kontakt-flex {
    display: flex;
    justify-content: space-around;
    background-color: #f1eeeb;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 40px;
    padding-right: 40px;
}

.kontakt-flex .text-w-image__container {
    width: 33%;
}

.text-block {
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 1439px) {
    .about-flex {
        flex-direction: column;
    }

    .about-flex div {
        width: auto;
    }

    .about-flex div img {
        width: 100% !important;
    }

    .kontakt-flex {
        flex-direction: column;
    }

    .kontakt-flex .text-w-image__container {
        width: auto;
    }

    .citat-green {
        padding-left: 20px !important;
        padding: 30px;
    }

    .citat-white {
        padding: 30px;
        padding-left: 20px !important;
    }

    .about-citat {
        padding: 30px;
    }
}

.citat-green {
    padding: 90px;
    padding-left: 40px;
    background-color: rgba(14, 86, 62, 1) !important;
    color: white;
}

.citat-white {
    padding: 90px;
    padding-left: 40px;
}

.sidebar {
    background-color: unset !important;
}

.sidebar-inner {
    background-color: #b31d24;
    color: white !important;
}

.sidebar-inner h4,
.topic a,
.active>li>a {
    color: white !important;
}

.categories .topic.child-active>a,
.categories li.active>a,
.sidebar-inner .active>a {
    background-color: #072b1f !important;
}

.ui-slider-horizontal .ui-slider-handle {
    background-color: #072b1f !important;
}

.param-filter-top fieldset {
    background-color: #0e563e !important;
}

.type-page .content-wrapper {
    width: 100% !important;
    width: 100% !important;
}

.type-page .content-wrapper .content {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.type-page .content-wrapper {
    width: 100% !important;
    width: 100% !important;
}

.type-index .content-wrapper .content {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.type-index .container {
    width: 100% !important;
}

.type-page header h1 {
    text-align: left !important;
    padding-left: 40px;
}

.content-wrapper.container {
    padding: 0 !important;
}

.caramel {
    background-color: #f1eeeb;
}

.homepage-caramel {
    background-color: #ded7d0;
}

.logos {
    background-color: #f1eeeb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.logos img {
    width: 10%;
    height: auto;
}

.shopify-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.image-slideshow {
    display: flex;
    position: relative;
    width: 100%;
}

.slider {
    height: 80vh;
    position: relative;
    width: 100%;
}

.css-slider-viewport {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.css-slider-holder {
    height: 100%;
}

.css-slider-container {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.slide__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.slide__text {
    position: relative;
    z-index: 3;
    padding: 60px 80px;
    color: #ffffff;
}

.slide__caption {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.slide__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.slide__title h2 {
    margin: 0;
    font-weight: 700;
}

.css-slider-navigation-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.css-slider-dot-navigation {
    display: flex;
    gap: 12px;
}

.css-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.css-slider-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

.css-slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 948px) {
    .slider {
        height: 60vh;
    }

    .slide__text {
        padding: 40px 30px;
    }

    .slide__title {
        font-size: 32px;
    }

    .slide__caption {
        font-size: 14px;
    }

    .css-slider-navigation-container {
        bottom: 20px;
    }

    .logos {
        flex-direction: column;
    }

    .logos img {
        width: 100% !important;
        padding: 40px;
    }

    .carousel-inner .item>a>img {
    height: 300px !important;
    object-fit: cover;
}
}

h2.hh {
    color: white;
}

.carousel-inner {
    min-height: auto !important;
}

.carousel-inner>.item {
}

.carousel-inner .item>a>img {
}

.homepage-group-title.h4 {
    text-align: left;
    margin-left: 40px;
}

.welcome {
    width: auto !important;
    margin: 0px !important;
}

.welcome-wrapper {
    padding: 0 !important;
}

.welcome h1 {
    padding-left: 0;
}

.in-index .content {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.p-detail-inner-header h1 {
    padding: 0 !important;
}

#header .header-top .header-top-wrapper>div {
    width: 20%;
}

.navigation-in .has-third-level div>ul a,
.navigation-in>ul>li>a {
    color: black !important;
    font-size: 15px !important;
}

.navigation-in>ul>li>a:hover {
    color: white !important;
    font-size: 15px !important;
}

.navigation-in {
    margin-bottom: 15px !important;
}

.header-bottom {
    padding-bottom: 10px !important;
}

.box-bg-variant .categories a {
    color: white !important;
}

#categories a:hover {
    color: white !important;
}

.cat-trigger {
    color: white !important;
}

.cat-trigger:hover {
    color: black !important;
}

.siteCookies,
.siteCookies__form {
    background-color: #0e563e !important;
}

.customer-page .sidebar .client-center-box ul li a {
    color: white;
    padding: 10px;
    border-radius: 3rem;
}

.categories .topic.child-active>a,
.categories li.active>a,
.sidebar-inner .active>a {
    background-color: unset;
}

.navigation-in>ul>li.exp>a,
.navigation-in>ul>li>a:hover {
    background-color: #ecdfd1 !important;
    color: black !important;
}

.categories a:hover {
    background-color: #901a20 !important;
    color: white !important;
}

[class^=icon-] {
    color: #b31d24;
}

.languagesMenu .languagesMenu__header--actual {
    color: #b31d24;
}

.param-filter-top form fieldset {
    display: block;
    background-color: unset !important;
}

/* Skrýt 4. produkt (který má active třídu) když není rozbaleno */
.products-top-wrapper:not(.expanded) .products-top .product.active:nth-child(4) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.products-top-wrapper:not(.expanded) .products-top .product:nth-child(4) {
    display: none !important;
}

/* Po rozbalení zobrazit všechny produkty */
.products-top-wrapper.expanded .product {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.products-top-wrapper.has-inactive:not(.expanded) .product:nth-child(n+4) {
    display: none !important;
}

@media (max-width: 767px) {
    .type-detail .content-wrapper.container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    #header .header-top .header-top-wrapper {
        z-index: 2000 !important;
        height: 90px !important;
    }

    #header .header-top {
        height: 77px !important;
    }

}

#header .header-top .header-top-wrapper .site-name a img, #header .header-top .header-top-wrapper h1.site-name a img {
    max-width: 120px;
}

.usp-item {
	align-items: center!important;
}

.usp-item p {
	text-align: center!important;
}

.subcategories.with-image li a .image {
	display: none!important;
}

[data-testid="tabDescription"] {
  display: none!important;
}

.navigation-in>ul>li.ext>ul>li>a img {
	display: none!important;
}

.awards {
	display: none!important;
}

.footer-content {
grid-template-columns: 0.5fr 1fr;
}

.footer-bottom-full-width {
padding-top: 0!important;
padding-bottom: 0!important;
padding-left: 45px!important;
padding-right: 45px!important;
background-color: unset!important;
}

.social-payment {
justify-content: right;
}

#footer .footer-bottom, #footer .footer-bottom a {
color: white!important;
}

.basic-description {
display: none!important;
}

.extended-description {
	width: 100%!important;
}