
* {
    font-family: 'Segoe UI', Roboto, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header */
:root {
    --primary-color: #1a1a1a;
    --accent-color: #e44d26;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-bar {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.top-bar-right a {
    text-decoration: none;
    color: var(--text-dark);
}
.top-bar-right a:hover {
    color: var(--accent-color);
}
.user-welcome {
    margin-right: 10px;
    margin-bottom: 1px;
}

.language-switcher {
    margin-left: 20px
}

.lang-form {
    display: flex;
    gap: 8px; /* mezera mezi vlaječkami */
}

.lang-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0.5; /* neaktivní jsou průhlednější */
}

.lang-btn img {
    width: 25px; /* velikost vlaječky */
    height: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.lang-btn:hover {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.lang-btn.active {
    opacity: 1;
    outline: 2px solid #fff; /* zvýraznění aktivního jazyka bílým rámečkem */
    outline-offset: 1px;
}

.divider {
    color: rgba(255,255,255,0.3);
    margin: 0 10px;
}

.contact-link, .top-link {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s;
    margin-bottom: 1px;
}

.contact-link:hover, .top-link:hover {
    color: var(--accent-color);
}

.main-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.main-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-logo a {
    text-decoration: none;
}
.header-logo img {
    opacity: 0.8;
}
.header-logo img:hover {
    opacity: 1;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--accent-color);
}

.header-search {
    flex-grow: 1;
    max-width: 600px;
}

.search-form {
    display: flex;
    border: 2px solid #808080 !important;
    border-radius: 4px;
    box-shadow: 0 3px 7px rgba(84, 84, 84, 0.5) !important;
    position: relative;
}
.search-form:hover {
    box-shadow: 0 5px 16px rgba(84, 84, 84, 0.6) !important;
}

.search-form input {
    flex-grow: 1;
    border: none;
    padding: 10px 15px;
    outline: none;
    font-size: 18px;
}

.search-form button {
    /*background-color: var(--primary-color);*/
    /*background-color: green;*/
    background-color:#818181;
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 18px;
}

.search-form button:hover {
    background-color: var(--accent-color);
}

/* naseptavac vyhledavani */
.autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 2px); /* +2px kvůli tloušťce borderu formuláře */
    left: -2px; /* vyrovnání borderu vlevo */
    right: -2px; /* vyrovnání borderu vpravo */
    background: white;
    border: 1px solid #898989; /* Ladí s formulářem */
    border-top: none; /* Aby to vypadalo, že to navazuje */
    z-index: 1000;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 0 0 4px 4px;
    width: 544px;
}
.result-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: #333;
}
.result-item:hover { background: #f1f1f1; }
.view-all-results {
    display: block;
    padding: 5px;
    background: #f0f0f0;
    text-align: center;
    /*font-weight: bold;*/
    font-size: 14px;
    color: #007bff;
}
.result-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 3px;
}

.result-info {
    display: flex;
    flex-direction: column;
}

.result-name {
    color: #555;
    font-size: 16px;
    font-weight: 500;
}

.result-price {
    font-size: 15px;
    color: #555;
    font-weight: bold;
    right: 20px;
    position: absolute;
}


/* Messages Styling */
#messages-container {
    position: fixed;
    top: 25px; /* Pozice pod hlavním headerem */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    pointer-events: none; /* Aby nebránily klikání pod nimi, dokud na ně nesáhneš */
}

.message-toast {
    pointer-events: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 0.4s ease-out forwards;
    border-left: 5px solid #ccc;
}

/* Barevné rozlišení podle typu zprávy */
.message-toast.success { border-left-color: #28a745; color: #155724; }
.message-toast.error { border-left-color: #dc3545; color: #721c24; }
.message-toast.warning { border-left-color: #ffc107; color: #856404; }

.message-content { display: flex; align-items: center; gap: 10px; }
.message-close { background: none; border: none; font-size: 20px; cursor: pointer; color: #999; }

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}



.cart-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    position: relative;
    padding: 10px;
}

.cart-button i {
    font-size: 1.2rem;
    margin-right: 8px;
    color: var(--primary-color);
    opacity: 0.9;
}
.cart-button i:hover {
    opacity: 1;
}

.cart-badge {
    background-color: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 30px;
}
.cart-label {
    margin-left: 10px;
}

/* Mobilní optimalizace */
@media (max-width: 768px) {
    .main-header-content {
        flex-wrap: wrap;
    }
    .header-search {
        order: 3;
        min-width: 100%;
    }
    .cart-label {
        display: none;
    }
}

/* NAVIGACE - ZÁKLAD */
.main-navigation {
    background-color: var(--primary-color); /* Používáme barvu z předchozího kroku */
    min-height: 40px;
    border-bottom: 3px solid var(--accent-color);
}

.nav-container {
    display: flex;
    justify-content: center; /* Vycentrování na střed */
    position: relative;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Horizontální menu pro desktop */
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 10px 20px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
    font-weight:500;
}

.nav-menu > li > a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: underline;
}

/* DROPDOWN (VÝSUVNÉ MENU) */
.dropdown-content {
    display: none; /* Skryté v základu */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
}

.dropdown-content li a {
    color: var(--text-dark);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    transition: background 0.2s;
}

.dropdown-content li a:hover {
    background-color: var(--bg-light);
    color: var(--accent-color);
}

/* Zobrazení dropdownu při najetí myší */
.dropdown:hover .dropdown-content {
    display: block;
}

/* MOBILNÍ MENU (HAMBURGER) */
.menu-toggle {
    display: none; /* Schováme samotný checkbox */
}

.hamburger {
    display: none; /* Schováme ikonu na desktopu */
    cursor: pointer;
    padding: 15px;
}

/* RESPONZIVNÍ ÚPRAVY (pro mobily) */
@media (max-width: 768px) {
    .nav-container {
        justify-content: flex-start;
    }

    .hamburger {
        display: flex;
        align-items: center;
        gap: 10px;
        color: white;
    }

    /* Styl tří čárek */
    .hamburger span:not(.menu-text) {
        display: block;
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 4px 0;
        position: relative;
    }

    .nav-menu {
        display: none; /* Skryjeme menu na mobilu */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--primary-color);
        z-index: 999;
    }

    /* Zobrazení menu po kliknutí na hamburger (přes checkbox) */
    .menu-toggle:checked ~ .nav-menu {
        display: flex;
    }

    .nav-menu > li {
        width: 100%;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .dropdown-content {
        position: static; /* Na mobilu se dropdown nerozbaluje do boku, ale pod sebe */
        background-color: rgba(0,0,0,0.1);
        width: 100%;
        box-shadow: none;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

/* CAROUSEL - Homepage */

.carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 400px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 5px 5px 5px lightblue;
    margin-top: 5px;
}

.carousel-container {
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    text-align: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-content h1 { font-size: 3rem; margin-bottom: 1rem; }

.btn-banner {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%; /* Vertikální střed */
    transform: translateY(-50%); /* Přesné vycentrování */
    background-color: rgba(0, 0, 0, 0.3); /* Poloprůhledné pozadí */
    color: white;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10; /* Musí být vyšší než z-index slidu (který má 1) */
    border-radius: 50%;
    transition: background-color 0.3s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Umístění vlevo */
.carousel-prev {
    left: 20px;
}

/* Umístění vpravo */
.carousel-next {
    right: 20px;
}

/* Efekt při najetí myší */
.carousel-prev:hover, .carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/** Doporucene produkty */
.recommended-products {
    width: 100%;
    max-width: 1300px;
    margin: 20px auto;
}
.section-title {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 0px;
}


/* Product slider */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.product-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 5px;
    /* Skrytí scrollbaru pro Chrome, Safari a Operu */
    -webkit-overflow-scrolling: touch;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

/* Definice šířky: 4 produkty na desktopu (cca 25% každý) */
.product-item {
    flex: 0 0 calc(25% - 15px);
    min-width: 250px; /* Zajištění čitelnosti na malých displejích */
}

/* Šipky */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.slider-arrow:hover { background: #000; color: #fff; }
.slider-arrow.prev { left: -22px; }
.slider-arrow.next { right: -22px; }

/* Responzivita: na tabletu 2 produkty, na mobilu 1.5 (aby kousek dalšího vykukoval) */
@media (max-width: 1024px) { .product-item { flex: 0 0 calc(50% - 10px); } }
@media (max-width: 600px) { .product-item { flex: 0 0 75%; } .slider-arrow { display: none; } }




.site-main {
    /* Nastavíme minimální výšku, aby footer neutíkal nahoru na prázdných stránkách */
    min-height: calc(100vh - 300px); 
    padding-top: 10px;    /* Odsazení od menu */
    padding-bottom: 10px; /* Odsazení od budoucího footeru */
    background-color: #ffffff; /* Případně velmi světlé šedé #fdfdfd */
}

/* Opakování třídy container pro jistotu (pokud ji už máš, podívej se na hodnoty) */
.container {
    max-width: 1400px;
    margin: 0 auto;       /* Vycentrování na střed */
    padding: 0 15px;      /* Vnitřní rezerva pro mobilní zobrazení */
}

/* Pomocná třída pro sekce uvnitř main */
.page-section {
    margin-bottom: 40px;
}


.filters {
    width: 280px; 
    background: #f4f3f3; 
    padding: 20px; 
    /*border-radius: 8px;*/
}

/* 1. Hlavní linka slideru (zmenšíme výšku pro elegantnější vzhled) */
#price-slider {
    height: 10px;
    border: none;
    background: #e9ecef;
    border-radius: 4px;
    margin-top: 15px;
    margin-left: 10px;
    margin-right: 10px;
}

/* 2. Barva spojnice mezi posuvníky (aktivní rozsah) */
.noUi-connect {
    background: #007bff; /* Tady si dej svou barvu webu */
}

/* 3. Samotné posuvníky (Handles) */
.noUi-horizontal .noUi-handle {
    width: 20px !important;
    height: 20px !important;
    right: -11px; /* Vycentrování vůči ose */
    top: -8px;    /* Vycentrování vůči ose */
    border-radius: 5px; /* Tady se děje to zakulacení */
    background: #007bff;
    border: 2px solid #656565; /* Barva okraje kuličky */
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
    cursor: pointer;
    transition: transform 0.2s;
}

/* 4. Odstranění těch dvou ošklivých čárek uvnitř posuvníků */
.noUi-handle::before,
.noUi-handle::after {
    display: none !important;
}

/* 5. Efekt při najetí (trochu kuličku zvětšíme) */
.noUi-handle:hover {
    transform: scale(1.1);
}

/* 6. Vzhled popisů cen pod sliderem */
#price-min-display, #price-max-display {
    font-weight: bold;
    color: #333;
}
.slide-price {
    display: flex; 
    justify-content: space-between; 
    margin: 15px 0 5px 0; 
    font-size: 15x;
}

.filter-item {
    margin-bottom: 5px;
}

.filter-item input[type="checkbox"] {
    display: none;
}
/* 2. Stylování labelu, aby vypadal jako interaktivní prvek */
.filter-item label {
    position: relative;
    padding-left: 30px; /* Prostor pro naši novou kostičku */
    cursor: pointer;
    display: inline-block;
    line-height: 20px;
    user-select: none;
}

/* 3. Vytvoření naší vlastní "kostičky" */
.filter-item label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    height: 17px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 4px; /* Tady nastavíš zaoblení (0 = čtverec, 4 = jemné, 10 = skoro kruh) */
    transition: all 0.2s ease;
}

/* 4. Vzhled, když je checkbox zaškrtnutý */
.filter-item input[type="checkbox"]:checked + label::before {
    background-color: #007bff; /* Barva po zaškrtnutí */
    border-color: #007bff;
}

/* 5. Vytvoření fajfky (symbolu zaškrtnutí) pomocí pseudo-elementu after */
.filter-item label::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0); /* Defaultně je neviditelná a schovaná */
    transition: transform 0.2s ease;
}

/* 6. Zobrazení fajfky po zaškrtnutí */
.filter-item input[type="checkbox"]:checked + label::after {
    transform: rotate(45deg) scale(1);
}

/* 7. Efekt při najetí myší (hover) */
.filter-item label:hover::before {
    border-color: #007bff;
}

.breadcrumb {
    padding: 10px 15px;
    margin-left: 15px;
    font-size: 0.9rem;
    color: gray;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.breadcrumb a, .breadcrumb span {
    margin-left: 5px;
    margin-right: 5px;
}
.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}


.subcategory-list {
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; 
    margin-bottom: 30px;
}

.subcategory-card {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    /*border-radius: 8px;*/
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    width: calc(22% - 15px);
    min-width: 180px;
    height: 45px;
    margin-right: 10px;
    margin-top: 5px;
    /*background-color: #ece1fe;*/
}

.subcategory-card:hover {
    background-color: #f6f6f6 !important;
    transform: translateY(-2px);
    box-shadow: 5px 5px 5px lightblue;
}


.sorting-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.products-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
    gap: 25px;
}

.product-card {
    border: 1px solid #f3f3f3;
    padding: 20px;
    text-align: left;
    /*border-radius: 8px;*/
    transition: box-shadow 0.4s, transform 0.3s;
    background: #fff;
    /*max-width: 100%; */
    max-width: 200px;
    min-width: 200px;
    max-height: 100%; 
    object-fit: contain;
}
.product-card:hover {
    transform: translateY(-5px);
    /*box-shadow: 0 10px 20px rgba(0,0,0,0.02);*/
    border-color: #d1d1d1 !important;
    /*background-color: #f8f8f8 !important;*/
    box-shadow: 5px 5px 5px lightblue;
}
.product-image-wrapper {
    height: 180px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 15px;
    position: relative;
}
.product-card-image {
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain;
}
.product-card-name {
    font-size: 15px;
    font-weight: 500; 
    margin: 5px 0; 
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    overflow: hidden;
    -webkit-line-clamp: 2; /* Omezit na 2 řádky */
}
.product-card-description {
    margin-top: -5px;
    font-size: 13px;
    color: #666;
    height: 50px; /* Pevná výška pro konzistentní vzhled */
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-card-price {
    font-size: 1.25rem; 
    font-weight: bold; 
    color: var(--primary-color); 
    margin: 5px 0;
    text-align: center;
}
.product-card-button {
    background: var(--accent-color); 
    color: white; 
    border: none; 
    padding: 10px 20px; 
    border-radius: 4px; 
    cursor: pointer; 
    width: 100%; 
    font-weight: bold;

    transition: background 0.3s;
    box-shadow: 5px 5px 5px lightblue;
}
.product-card-button:hover {
    background: #b93e20;
}

.flags {
    position: absolute;
    top: -10px;
    left: -20px;
    display: flex;
    flex-direction: column; /* Vlaječky budou pod sebou */
    gap: 5px;           /* Mezera mezi vlaječkami */
    z-index: 10;        /* Aby byly vždy nad obrázkem */
}

.flags-details {
    position: relative;
    gap: 10px; /* Mezera mezi vlaječkami */
    margin-bottom: 10px;
}

/* Vzhled jednotlivých vlaječek */
.flag {
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    border-radius: 3px;
    text-transform: uppercase;
    width: fit-content; /* Aby pozadí bylo jen pod textem */
}

.flag.new { background-color: red; }      /* Zelená pro novinky */
.flag.sale { background-color: green; }     /* Červená pro slevu */
.flag.featured { background-color: #ffc107; color: #000; }


.product-detail-container {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px; 
    display: flex; 
    gap: 40px; 
    flex-wrap: wrap;
}
.thumb {
    width: 70px; 
    height: 70px; 
    border: 1px solid #ddd; 
    cursor: pointer; 
    object-fit: cover;
}
.thumb:hover {
    border: 1px solid #555;
    box-shadow: 2px 2px 2px lightblue;
}
.product-info {
    flex: 1; 
    min-width: 300px;
}
.product-info h2 {
    font-size: 2rem; 
    margin-bottom: 10px;
}
.product-description {
    color: #666; 
    font-size: 1.1rem; 
    margin-bottom: 20px;
}
.brand-info {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #444;
}
.price-box {
    background: #f9f9f9; 
    padding: 20px; 
    border-radius: 8px; 
    margin-bottom: 20px; 
    margin-top: 25px;
}

/* lightbox - detail obrazku */
.image-modal {
    display: none; /* Skryté ve výchozím stavu */
    position: fixed;
    z-index: 9999;
    padding-top: 10px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border: 3px solid white;
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgb(14, 14, 14);
}

.close-popup {
    position: absolute;
    top: 20px; right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close-popup:hover { color: #bbb; }

.prev-arrow, .next-arrow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 50px;
    transition: 0.3s ease;
    user-select: none;
}

.prev-arrow { left: 10px; }
.next-arrow { right: 10px; }

.prev-arrow:hover, .next-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Záložky */
.product-tabs-container { margin-left: 20px; margin-right: 20px;}
.tabs-header { display: flex; gap: 20px; border-bottom: 2px solid #eee; }
.tab-link { background: none; border: none; padding: 10px 20px; cursor: pointer; font-size: 1.1rem; color: #666; position: relative; }
.tab-link:hover { color: #000; }
.tab-link.active { color: #000; font-weight: bold; }
.tab-link.active::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px; background: #333; }
.tab-content { display: none; margin: 0px 20px; }
.tab-content.active { display: block; }

/* Parametry produktu */
.parameters-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.parameters-table tr {
    background-color: #f4f4f5;
}
.parameters-table tr:nth-child(even) {
    background-color: #ffffff;
}
.parameters-table th {
    text-align: left;
    font-weight: 400;
    padding: 10px;
    border-bottom: 1px solid #dee2e6;
    width: 30%;
}
.parameters-table td {
    padding: 10px;
    border-bottom: 1px solid #dee2e6;
}
.parameters-table tr:hover {
    background-color: #fdffed;
}

/** soubory ke stazeni */
.files-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.files-table tr {
    background-color: #f4f4f5;
}
.files-table tr:nth-child(even) {
    background-color: #ffffff;
}
.files-table th {
    text-align: left;
    font-weight: 400;
    padding: 10px;
    border-bottom: 1px solid #dee2e6;
    width: 30%;
}
.files-table td {
    padding: 10px;
    border-bottom: 1px solid #dee2e6;
}
.files-table tr:hover {
    background-color: #fdffed;
}
.files-table a {
    text-decoration: none;
    color: #292929;
}
.files-table a:hover {
    text-decoration: underline;
}

/* Nakupni kosik */
.cart-container { max-width: 1200px; margin: 2rem auto; padding: 0 1rem; font-family: sans-serif; }

.cart-title { border-bottom: 1px solid #7f7f7f; padding-bottom: 1rem; margin-bottom: 1rem; }

/* Řádek produktu */
.cart-row { 
    display: flex; align-items: center; padding: 10px 20px; 
    transition: background 0.2s; gap: 15px;
    margin-bottom: 7px;
    border: 1px solid rgb(255, 255, 255);
    border: 1px solid #f2f2f2;
}
.cart-row:hover { 
    background: #fafafa; 
    /*transform: translateY(-5px);*/
    border: 1px solid #dbdbdb;
    box-shadow: 5px 5px 5px lightblue;
}

/* Sloupce */
.col-img { flex: 0 0 80px; }
.col-img img { width: 80px; height: 80px; object-fit: cover; }
.col-main { flex: 3; }
.cart-product-name { font-size: 1.1rem; margin-bottom: 5px; }
.cart-product-name a { text-decoration: none; color: #333; }
.cart-product-name a:hover { text-decoration: underline; }
.col-qty { flex: 1.5; text-align: center; }
.col-price { flex: 1; text-align: right; color: #666; }
.col-total { flex: 1.5; text-align: right; font-weight: bold; font-size: 1.1rem; }
.col-remove { flex: 0 0 40px; text-align: right; }

/* Vstupní pole pro množství */
.qty-input { 
    width: 60px; padding: 7px; border: 1px solid #ccc; border-radius: 5px; text-align: center; 
    font-size: 15px; outline: none; font-weight: bold;
}
.qty-input:focus { border-color: #007bff; box-shadow: 0 0 0 2px rgba(0,123,255,.25); }

.col-total, .col-price {
    font-variant-numeric: tabular-nums; /* Čísla mají stejnou šířku */
    text-align: right;
    white-space: nowrap;
}

/* Prázdný košík */
.empty-cart { text-align: center; padding: 5rem 2rem; background: #f9f9f9; border-radius: 8px; border: 2px dashed #ddd; }
.btn-shop { display: inline-block; padding: 1rem 2rem; background: #007bff; color: white; text-decoration: none; border-radius: 5px; margin-top: 1.5rem; }

/* Odstranit tlačítko */
.remove-link { color: #ccc; font-size: 25px; text-decoration: none; transition: color 0.2s; border: none; background: none; cursor: pointer; padding-bottom: 3px; font-weight:bold;}
.remove-link:hover { color: #d9534f; }

.cart-buttons {
    margin-top: 30px;
    margin-left: 15px;
}

.cart-page-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 20px;
}

.cart-main-content {
    flex: 2; /* Zabere 3/4 šířky */
}

.cart-summary-sidebar {
    flex: 1; /* Zabere 1/4 šířky */
    position: sticky;
    top: 20px; /* Přichytí se při skrolování */
}

.summary-box {
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    padding: 20px;
    box-shadow: 5px 5px 5px lightblue;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.summary-row.total {
    font-size: 1.25rem;
    margin-top: 15px;
}

.btn-checkout {
    display: block;
    background: var(--accent-color);
    color: white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 20px;
    width:325px !important;
}

.btn-checkout:hover {
    background-color: #b93e20;
    box-shadow: 5px 5px 5px lightblue;
}

button.btn-checkout {
    width: 350px !important;
    cursor: pointer;
}

.btn-green {
    display: block;
    background: #2db400;
    color: white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 20px;
    width:325px !important;
    cursor: pointer;
    border: 0px solid #2db400;
}

.btn-green:hover {
    background-color: #1e7600;
    box-shadow: 5px 5px 5px lightblue;
}

.btn-shop-back {
    text-decoration: none;
    color: #1f1f1f;
    font-size: 0.9rem;
    background-color: #c0c0c0;
    border-radius: 4px;
    padding: 10px 20px;
    margin-top: 70px;
}
.btn-shop-back:hover {
    box-shadow: 5px 5px 5px lightblue;
}

.btn-checkout {
    border: 0px !important;
    width: 100%;
}

.btn-shop {
    background-color: rgb(76, 170, 76);
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
}
.btn-shop:hover {
    box-shadow: 5px 5px 5px lightblue;
}

span.step a:hover {
    color: black;
}

.payment-methods {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: center;
}

.payment-methods p {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    filter: grayscale(100%); /* Decentní šedá barva */
    opacity: 0.6;
    transition: all 0.3s ease;
}

.payment-icons:hover {
    filter: grayscale(0%); /* Při najetí myší barvy ožijí */
    opacity: 1;
}

.payment-icons img {
    height: 22px; /* Jednotná výška pro všechny ikony */
    width: auto;
    object-fit: contain;
}

.summary-info {
    margin-top: 15px;
    text-align: center;
    color: #aaa;
}

@media (max-width: 992px) {
    .cart-page-layout {
        flex-direction: column;
    }
    .cart-summary-sidebar {
        width: 100%;
    }
}


/* Platba a doprava */
.options-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-card {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.option-card:hover {
    box-shadow: 5px 5px 5px lightblue;
    background-color: #f8f8f8 !important;
}

.option-card:hover {
    border-color: #28a745;
    background: #f8fff9;
}

.option-card input[type="radio"] {
    margin-right: 15px;
    transform: scale(1.2);
}

.option-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 500;
}

.checkout-steps {
    margin-bottom: 30px;
    text-align: left;
    font-size: 20px !important;
    color: #b4b4b4;
}

.checkout-steps .active {
    color: #333;
   /*font-weight: bold;**/
    border-bottom: 2px solid #d00000;
}

.checkout-steps a {
    color: #292929;
    text-decoration: none;
}

.btn-back {
    display: block;
    background: var(--accent-color);
    color: white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 20px;
}

.btn-back:hover {
    background-color: #b93e20;
    box-shadow: 5px 5px 5px lightblue;
}


.form-area {
    border-radius: 5px;
    border: 1px solid #dddddd;
    margin-bottom: 20px;
}
.form-area legend {
    color:#6e6e6e;
}



/***** checkout address *******/

.checkout-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.col-main { flex: 2; }
.col-side { flex: 1; position: sticky; top: 20px; }

/* Sekce formuláře */
.form-section {
    background: #fff;
    padding: 25px;
    /*border-radius: 12px;*/
    box-shadow: 5px 5px 5px lightblue;
    margin-bottom: 15px;
}

.form-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

/* Grid polí */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}
.full-width { grid-column: span 2; }

/* Inputy */
.field-group label, .login-label label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
}

.field-group input, .field-group textarea, .login-input input {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.field-group input:hover, .field-group textarea:hover, .login-input input:hover {
    border: 2px solid red; 
    box-shadow: 0 5px 10px rgba(185, 13, 13, 0.1);
}
.field-group input:focus, .field-group textarea:focus, .login-input input:focus {
    border: 2px solid red; 
    background-color: rgb(255, 255, 225);
    box-shadow: 0 5px 10px rgba(185, 13, 13, 0.1);  
}

.field-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.field-group select {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s;
}

.field-group select:hover {
    border: 2px solid red;
    box-shadow: 0 5px 10px rgba(0,123,255,0.1);
}

.field-group select:focus {
    border: 2px solid #007bff;
    box-shadow: 0 5px 10px rgba(0,123,255,0.1);
}

/* Rekapitulace vpravo */
.summary-box h3 {
    margin-top: 0px;
}
.summary-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.summary-card h2 { margin-top: 0; font-size: 1.5rem; }

.summary-items { margin-bottom: 20px; }
.item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #666;
}

.summary-totals {
    border-top: 2px solid #dee2e6;
    padding-top: 20px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.grand-total {
    font-size: 1.3rem;
    font-weight: 800;
    color: #000;
    margin-top: 10px;
}

/* Tlačítko */
.submit-btn {
    width: 100%;
    padding: 16px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover { background: #218838; }

.hidden-section { display: none; }


.error-msg {
    color: red;
    font-weight: bold;
}

button:disabled {
    background-color: #ccc !important;
    border-color: #999 !important;
    color: #666 !important;
    cursor: not-allowed;
}

.cart-main-content fieldset {
    border-radius: 10px;
    border: 1px solid #cecece;
    margin-top: 10px;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
    background: rgb(254, 254, 241);
}
.cart-main-content fieldset legend {
    margin-left: 10px;
    font-weight: bold;
    padding-left: 10px;
    padding-right: 10px;
}
.cart-main-content fieldset p {
    margin: 5px 5px;
}
div.label {
    width: 100px !important;
    font-weight: normal;
    float: left;
}
span.bold {
    font-weight: 500;
}
.agreement {
    margin-top: 10px;
    margin-left: 10px;
}
.agreement label {
    cursor: pointer;
    margin-bottom: 3px;
    vertical-align: middle;
}
.agreement input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
/***********/

.order-sent {
    text-align: center;
    margin-top: 20px;
}
.order-sent h2 {
    font-size: 30px;
    color: #212529;
    margin-bottom: 5px;
}
.order-sent p {
    font-size: 20px;
    color: #666;
}
.order-sent fieldset {
    width: 500px;
    border-radius: 10px;
    border: 1px solid #cecece;
    margin: 10px auto;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
    background: rgb(255, 255, 225);
}
.order-sent fieldset legend {
    margin-left: 10px;
    font-weight: bold;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}
.order-sent fieldset p {
    margin: 5px 5px;
}
.order-sent fieldset p span {
    font-weight: bold;
    color: black;
    margin-left: 5px;
}

.order-send-tips {
    width: 900px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    margin: 10px auto;
    margin-bottom: 20px;
    padding-bottom: 5px;
}
.order-send-tips:hover {
    box-shadow: 5px 5px 5px lightblue;
    transform: translateY(-1px);
    /*transition: all 0.3s ease;*//
}
.order-send-tips-header {
    background-color: #f1f1f1;
    color: #212121;
    font-size: 23px;
    font-weight: 500;
    padding: 5px;
    border-radius: 10px 10px 0 0;
}
.order-send-tips-body p {
    font-size: 16px;
    color: #212121;
}
.order-send-tips-body p strong {
    margin-right: 5px;
}
.payment-info {
    width: 800px;
    text-align: left;
    margin-bottom: 10px;
}
.payment-label {
    width: 200px !important;
    font-weight: bold;
    float: left;
    text-align: right;
    margin: 0 10px 0 250px;
}
.payment-val {
    font-size: 16px;
    font-weight: 600;
    color: rgb(125, 0, 0);
    text-transform: uppercase;
}

.auth-form {
    margin: 0px auto;
    max-width: 400px;
}
.auth-form input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    box-sizing: border-box;
}
.auth-form button {
    width: 100%;
    padding: 12px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}
.auth-form button:hover {
    background-color: #b3391b;
    box-shadow: 5px 5px 5px lightblue;
}


.help-text {
    color:#747474;
    font-size: 0.7rem;
    font-style: italic;
    text-align: right;
    margin-top: -2px;
}



/* Zakaznicka sekce */
/* Kontejner dashboardu */

/* Sidebar Menu */
.profile-sidebar {
    margin-top: 20px;
    min-width: 300px;
}

.profile-sidebar .list-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.profile-sidebar .list-group-item {
    display: block; /* Každý odkaz zabere celou šířku */
    width: 100%;
    margin-bottom: 0; /* Odstraní případné mezery mezi položkami */
    text-align: left;
    border: none;
    padding: 12px 20px;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}
.profile-sidebar .list-group-item i {
    margin-right: 10px; /* Mezera mezi ikonou a textem */
    width: 25px;
    font-size: 1.1rem;
}

.profile-sidebar .list-group-item:hover {
    background-color: #f1f3f5;
    color: #007bff;
    padding-left: 25px;
}

.profile-sidebar .list-group-item.active {
    background-color: #e7f1ff;
    color: #007bff;
    border-color: #007bff;
    font-weight: 600;
}

.dashboard-wrapper {
    background-color: #f8f9fa;
    padding-bottom: 3rem;
    min-height: 80vh;
}



/* Karty (Cards) */
.card {
    border: none;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card.shadow-sm {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

/* Barevné akcenty pro neuhrazené objednávky */
.card.border-warning {
    border-top: 5px solid #ffc107 !important;
}

.card-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f1f3f5;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 12px 12px 0 0 !important;
}
.card.full-width {
    width: 100%;
}

/* Zakoupené produkty - miniatury */
.product-mini-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    height: 100%;
    border: 1px solid #f1f3f5;
}

.product-mini-card img {
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-mini-card p {
    font-size: 0.85rem;
    line-height: 1.2;
    margin-bottom: 0;
    color: #333;
}

/* Tabulka objednávek */
.table {
    margin-bottom: 0;
}

.table thead th {
    background-color: #f8f9fa;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    border-top: none;
    color: #6c757d;
}

.table td {
    vertical-align: middle;
    padding: 15px 10px;
}

/* Badge - stavy */
.badge {
    padding: 6px 10px;
    border-radius: 30px;
    font-weight: 500;
}

.link-order-detail {
    text-decoration: none;
    color: #292929;
    font-weight: 500;
}
.link-order-detail:hover {
    text-decoration: underline;
}

/* Zakoupene zbozi */
.purchased-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.purchased-item-card {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    min-width: 500px;
    width: 100%;
}
.purchased-item-card:hover {
    box-shadow: 5px 5px 5px lightblue;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 20px;
}

.item-details {
    flex-grow: 1;
}

.item-details h3 {
    margin: 5px 0;
    font-size: 1.1rem;
}
.item-details p.description {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    color: #555;
}

.item-details p.item-meta {
    font-size: 0.9rem;
    margin-bottom: 0px;
    margin-top: 0px;
}

.purchase-date {
    font-size: 0.85rem;
    color: #888;
}

.item-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.btn-custom {
    background: #ffc107; /* Tvoje žlutá/oranžová barva */
    color: #ffffff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-link {
    background: #7a50e6; /* Tvoje žlutá/oranžová barva */
    color: #ffffff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}
.btn-link:hover {
    background-color: #5e3bb4;
    box-shadow: 5px 5px 5px lightblue;
}

/* Detail objednavky */
table.detail-order-summary {
    font-size: 1rem;
    margin-bottom: 20px;
}
/*table.detail-order-summary tr:nth-child(even) {
    background-color: #eaeaea;
}
table.detail-order-summary tr:hover {
    background-color: #fbffe0;
}*/
table.detail-order-summary td {
    padding: 5px 10px;
    font-size: 14px;
}

table.detail-order-items {
    width: 100%;
    font-family: 'Segoe UI', Roboto, sans-serif;
}
table.detail-order-items th {
    text-transform: uppercase;
    color: #6c757d;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}
table.detail-order-items td {
    padding: 10px;
}
table.detail-order-items tr:hover {
    background-color: #fbffe0;
}

.text-align-right {
    text-align: right;
}
.text-align-left {
    text-align: left;
}
.text-align-center {
    text-align: center;
}




/* Stavy objednavek */
.badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
}
/* Definice barev podle stavu */
.badge-pending { background-color: #ffeeba; color: #856404; }       /* Žlutá */
.badge-paid { background-color: #cce5ff; color: #004085; }          /* Světle modrá */
.badge-processing { background-color: #b8daff; color: #004085; }    /* Modrá */
.badge-shipped { background-color: #d4edda; color: #155724; }       /* Zelená */
.badge-completed { background-color: #28a745; color: #fff; }        /* Tmavě zelená */
.badge-cancelled { background-color: #f8d7da; color: #721c24; }



/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 60px 0 20px 0;
    margin-top: 50px;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.social-icons a {
    color: #bbb;
    margin-right: 15px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: var(--accent-color);
}

.footer-col h4 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.contact-info li {
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #666;
}

/* Responzivita pro mobilnĂ­ telefony */
@media (max-width: 768px) {
    .footer-col {
        flex: 0 0 100%;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-info li {
        justify-content: center;
    }
}
