
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.7;
    padding: 20px;
    transform: background-color 0.5s ease;
}


h1 {
    font-size: 2.5em;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: 1px;
}
.icons {
    font-size: 24px;
    margin-right: 20px;
    text-decoration: none;

}
.icons a {
    color: #333;
    text-decoration: none;
    
}

/* Kontejner pro hlavní obsah */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Záhlaví */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 30px;
}

/* Navigace */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


.logo .logo-image {
    width: 60px;
}

/* Menu navigace */
.navbar-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar-menu li {
    position: relative;
}

.navbar-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 10px;
}

.navbar-menu a:hover {
    color: #ff5722;
}

/* Zvýraznění při hover efektu */
.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff5722;
    transition: width 0.3s ease;
}

.navbar-menu a:hover {
    width: 75%;
}
.kosicek {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.product-listing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-listing img {
    width: 150px;
    border-radius: 8px;
}

.product-details h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    background-color: #f1f1f1;
    color: #333;
    padding: 8px;
    border-radius: 50%;
    font-size: 16px;
    border: none;
}

.remove-item {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.checkout-summary {
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.checkout-summary h1 {
    font-size: 22px;
}

.checkout-summary .subtotal, .checkout-summary .shipping, .checkout-summary .coupon {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.button-container {
    display: flex;
    justify-content: center; 
}

.checkout-button {
    background-color: #f05c18;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    max-width: 200px;
    text-decoration: none;
    display: block;
    width: 100%;
}

.checkout-button:hover {
    background-color: #df4d43;
}


/* Vyjížděcí submenu */
.navbar-menu .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    width: 220px;
    opacity: 0;
    visibility: hidden;
    border-radius: 8px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.navbar-menu li:hover > .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Nested submenu */
.submenu .submenu {
    top: 0;
    left: 100%;
    margin-left: 1px;
}

.submenu li {
    padding: 10px 20px;
    position: relative;
}

.submenu li a {
    color: #333;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.submenu li a:hover {
    color: #ff5722;
}

/* Zobrazení menu při aktivním checkboxu */
#menu-toggle:checked ~ .menu .navbar-menu {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    padding: 20px 0;
}

#menu-toggle:checked ~ .menu .navbar-menu .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    display: block;
    width: auto;
    box-shadow: none;
    padding: 0;
}

#menu-toggle:checked ~ .menu .navbar-menu .submenu .submenu {
    position: static;
    margin-left: 0;
}

#menu-toggle:checked ~ .menu .navbar-menu li:hover > .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 1010;
}

.ham {
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: 0.4s;
    border-radius: 2px;
}

/* Skrytí checkboxu */
#menu-toggle {
    display: none;
}

/* Animace hamburgeru na křížek */
div:nth-child(2){
    transition: 0.1s;
}
#menu-toggle:checked ~ .hamburger .ham:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#menu-toggle:checked ~ .hamburger .ham:nth-child(2) {
    opacity: 0; 
}

#menu-toggle:checked ~ .hamburger .ham:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Zobrazení menu při aktivním checkboxu */
#menu-toggle:checked ~ .menu .navbar-menu {
    display: flex; 
    flex-direction: column;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    padding: 20px 0;
}

/* Media Queries pro menší obrazovky */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    .navbar-menu li:hover .submenu {
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    .navbar-menu.responsive {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ebd7d7;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu.responsive li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .menu {
        position: relative;
    }
}


/* Fotogalerie */
.fotogalerie {
    text-align: center;
    margin-top: 60px;
}

.fotka-container {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9; /* Zachová poměr stran 16:9 */
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fotka-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Pokryje celý prostor a zachová proporce */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fotka-container:hover img {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


/* Tlačítka */
.tlacitka {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn {
    background-color: #ff5722;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    
}

.btn:hover {
    background-color: #e64a19;
   
}


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.item {
    background-color: #fff;
    border: none;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.item:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.product img {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.price {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff5722;
}

h3 {
    font-size: 1.5em;
    margin-top: 15px;
    color: #2c3e50;
}


.info-btn {
    display: none;
    padding: 12px 25px;
    background-color: #ff5722;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    border: #000000;
}

.item:hover .info-btn {
    display: inline-block;
}

.item:hover .price {
    display: none;
}

.info-btn:hover {
    background-color: #e64a19;
}

/* Responsivita */
@media (max-width: 768px) {
    .fotka-container img {
        max-width: 100%;
    }
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.info {
    text-align: center;
}

.posuvnik {
    width: 100%;
    overflow: hidden;
    padding: 20px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
    display: flex;
    align-items: center;
}

.slider {
    display: flex;
    align-items: center;
    animation: scroll 20s linear infinite; 
}


.slider img {
    width: 200px;
    height: auto;
    margin-right: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); 
    transition: transform 0.3s ease-in-out;
}


.slider img:hover {
    transform: scale(1.05);
}


.posuvnik p {
    font-size: 18px;
    color: #333;
    margin-right: 20px;
    white-space: nowrap;
    font-weight: 500; 
}



@media (max-width: 768px) {
    .slider img {
        width: 150px; 
        margin-right: 15px;
    }

    .posuvnik p {
        font-size: 16px;
    }
}
@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}
@keyframes rotateBtn {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.loader {
    width: fit-content;
    font-weight: bold;
    font-family: monospace;
    font-size: 30px;
    color: #0000;
    background: linear-gradient(90deg, #ff5722 calc(50% + 0.5ch), #000 0) right/calc(200% + 1ch) 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: l7 2s infinite steps(11);
}

.loader:before {
    content: "Loading...";
}

@keyframes l7 {
    to {
        background-position: left;
    }
}

.btn {
   background-color: #ff5722;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    
    background-color: #e64a19;
   border-radius: 30px;
    transform: translateY(-5px);
}

.pod {
    padding: 40px; 
}

.podpora {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.podpora h1 {
    color: #000000;
    margin-bottom: 40px;
    font-size: 2.5em;
}

.sluzby, .zaruka, .návody, .faq {
    display: inline-block;
    width: 23%;
    vertical-align: top;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 10px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.sluzby:hover, .zaruka:hover, .návody:hover, .faq:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sluzby span, .zaruka span, .návody span, .faq span {
    font-size: 50px;
    color: #000000;
}

.sluzby h4, .zaruka h4, .návody h4, .faq h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
    font-size: 1.5em;
}

.sluzby p, .zaruka p, .návody p, .faq p {
    color: #666;
    font-size: 1em;
    line-height: 1.5;
}
@media (max-width: 480px) {
    .sluzby, .zaruka, .návody, .faq {
        width: 98%;
        margin: 1%;
    }

    .podpora h1 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .sluzby span, .zaruka span, .návody span, .faq span {
        font-size: 40px;
    }

    .sluzby h4, .zaruka h4, .návody h4, .faq h4 {
        font-size: 1.2em;
    }

    .sluzby p, .zaruka p, .návody p, .faq p {
        font-size: 0.9em;
    }
}
.grid .item.product img {
    width: 100%;
    height: auto;
    max-width: 200px
}
.footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: #f0e8e8;
}
.footer div {
    margin-right: 20px;
}
.footer h3 {
    margin-bottom: 10px;
}
.footer a {
    color: #7c6d6d;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}
.footer .social-media a {
    display: inline-block;
    margin-right: 10px;
}
.footer .newsletter input {
    padding: 5px;
    margin-right: 10px;
}
.footer .newsletter button {
    padding: 5px 10px;
    background-color: #e6d7d7;
    color: #000000;
    border: none;
    cursor: pointer;
}
.footer .qr-code img {
    width: 100px;
    height: 100px;
}
.footer .bottom-bar {
    text-align: center;
    padding: 10px;
    background-color: #6e6666;
}
.footer .bottom-bar a {
    color: #1f1d1d;
    margin: 0 10px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
    }

    .footer div {
        margin-right: 0;
        text-align: center;
    }

    .footer .newsletter {
        width: 100%;
        align-items: center;
    }

    .footer .newsletter input {
        width: 80%;
    }
}

@media (max-width: 480px) { 
    .footer .social-media a {
        margin-bottom: 10px;
    }
}
form {
    display: flex;
    flex-direction: column;
}
label {
    margin: 10px 0 5px;
}
input[type="text"], input[type="email"], input[type="tel"], textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
input[type="submit"] {
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #0d0e0db0;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}
input[type="submit"]:hover {
    background-color: #218838;
}
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    .navbar-menu.responsive {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .navbar-menu.responsive li {
        margin: 15px 0;
    }
    .hamburger {
        display: block;
    }
    .menu {
        position: relative;
    }
}
.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fafafa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
}
label {
    margin: 10px 0 5px;
}
input[type="text"], input[type="email"], input[type="tel"], textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 30px;
    width: 100%;
    box-sizing: border-box;
}
input[type="submit"] {
    padding: 10px;
    border: none;
    border-radius: 30px;
    background-color: #ff5722;
    color: #fff;
    cursor: pointer; 
    font-size: 16px;
}
input[type="submit"]:hover {
    background-color: #ec8829;
}
.detailse {
   display: flex;
   justify-content: center;
    padding: 20px;
    justify-items: center;
}

.detail {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.final img {
    width: 100%;
    height: auto;
}

.detail h1 {
    font-size: 26px;
    color: #333;
}

.detail h2 {
    font-size: 22px;
    color: #e53935;
    margin-top: 5px;
}

.detail ul {
    list-style: none;
    padding: 0;
}

.detail ul p {
    font-size: 16px;
    color: #666;
}

.shrnuti {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
}

.shrnuti h4 {
    margin: 5px 0;
}

@media (max-width:780px) {
    .detailse {
        display: flex;
        flex-direction: column;
    }
}
.tlacitko a {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 20px;

}
.tlacitko{
    text-align: center;
    padding: 10px 10px;
    margin: 20px;
    background-color: #ff5722;
    border-radius: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    border: #333;

}
.produkty {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Dynamické sloupce */
    gap: 20px; /* Mezera mezi produkty */
    padding: 20px;
    display: flex;
    justify-content: center; /* Centrovat grid */
}

.produkt {
    background-color: white; 
    border-radius: 30px; 
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
    
}



.left-img {
    height: 400px;
   
}

.text {
    padding: 15px;
}

.tla a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 18px;
    transition: color 0.3s ease;

}

.tla {
    text-align: center;
    font-size: 18px;
    padding: 10px;
    background-color: #ff5722;
    border: 1px solid #f38154;
    color: white;
    border-radius: 30px;
   
   
    
}
/* Media Queries for Mobile */
@media (max-width: 1120px) {
    .produkty {
        display: grid;
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}
