/* Reset a základní styl */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #121212; /* Tmavý režim */
    color: #f1f1f1; /* Světlý text */
    line-height: 1.6;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Hlavička */
header {
    display: flex;
    justify-content: center; /* Zajištění středového zarovnání */
    align-items: center; /* Vertikální zarovnání */
    padding: 10px; /* Zvětšený padding pro lepší proporce */
    background-color: #1c1c1c;
    color: #f1f1f1;
    position: relative;
}

/* Styl loga */
header .logo img {
    max-width: 180px; /* Nastav max. šířku loga */
    height: auto; /* Zachování poměru stran */
    display: block;
}

/* Navigace zarovnání */
nav {
    position: absolute;
    right: 20px; /* Posunutí navigace doprava */
    top: 50%;
    transform: translateY(-50%);
}

/* Úprava responzivity pro mobilní zařízení */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px;
    }
    
    nav {
        position: static;
        margin-top: 10px;
    }
    
    header .logo img {
        max-width: 150px; /* Menší logo pro mobilní zařízení */
    }
}


nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0;
}

nav ul li button {
    background-color: #ff6f00;
    color: #121212;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

nav ul li button:hover {
    background-color: #e67800;
}

/* Sekce s produkty */
section {
    flex: 1;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

/* Produkt */
.product {
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.product:hover {
    transform: scale(1.05);
}

.product img {
    max-width: 100%;
    max-height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

button.add-to-cart {
    background-color: #ff6f00;
    color: #121212;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.add-to-cart:hover {
    background-color: #e67800;
}

/* Patička */
footer {
    background-color: #1c1c1c;
    color: #f1f1f1;
    text-align: center;
    padding: 20px;
    width: 100%;
    margin-top: auto;
}

/* Modální okno */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Světlejší průhledné pozadí */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Zajištění, že modal bude nahoře */
    overflow: auto; /* Umožní skrolování v celém modalu */
}

.modal-content {
    background-color: #f9f9f9; /* Světlejší pozadí obsahu */
    color: #121212;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%; /* Pro malé obrazovky */
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    max-height: 90vh; /* Maximální výška obsahu */
    overflow-y: auto; /* Skrolování obsahu modalu */
}

/* Styl položek v košíku */
#cart-items {
    margin-bottom: 20px;
    padding: 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ccc; /* Světlejší barva */
}

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

.cart-item button {
    background-color: #ff6f00;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cart-item button:hover {
    background-color: #e67800;
}

/* Celková cena a tlačítka */
#total-price {
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0;
}

#pay-now, #close-cart {
    background-color: #00c853;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin: 10px 0;
}

#pay-now:hover {
    background-color: #00a844;
}

#close-cart {
    background-color: #ff6f00;
}

#close-cart:hover {
    background-color: #e67800;
}

.cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.cart-icon {
    width: 70px;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.cart-link:hover .cart-icon {
    transform: scale(1.2);
}