/* GLOBALNÍ STYLY */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #02050a;
    color: #ffffff;
    line-height: 1.6;
}


/*Světlý a tmavý styl*/
body.light-mode {
  background-color: #fff;
  color: #000;
}
body.light-mode header,
body.light-mode footer {
  background-color: #f5f5f5;
}

/* Kontejner */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    font-family: "Inter", Sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 50px;
}

h3 {
    font-size: 30px;
}

/* Fixní hlavička */
header.hlavicka {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(2, 5, 10, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    padding: 8px 32px;
    display: flex;
    align-items: center;
}

.hlavicka .container {
    display: flex;
    align-items: center;
}

header .logo img {
    max-height: 50px;
}

/* Menu */
header .menu ul {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
    margin-left: 32px;
}

/* Oddělovač mezi položkami menu */
header .menu ul li {
    position: relative;
    padding: 0 8px;
}

header .menu ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

header .menu ul li:hover a {
    color: #55E6A5;
}

/* Tlačítko (vpravo) */
header .tlacitko-hlavicka {
    margin-left: auto;
}

header .tlacitko-hlavicka .btn {
    background-color: #55E6A5;
    border: none;
    color: #0a1019;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

header .tlacitko-hlavicka .btn:hover {
    background-color: #0a1019;
    color: #55E6A5
}

/* Burger menu pro mobil */
.menu-ikona {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.menu-ikona span {
    background-color: #ffffff;
    height: 3px;
    width: 25px;
    margin: 4px 0;
    transition: 0.4s;
}

/* HERO SEKCE */
.hero {
    position: relative;        /* nově pro video a overlay */
    overflow: hidden;          /* schová přetečení videa */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 64px 32px;
    background-image: radial-gradient(at center right, rgba(85,230,165,0.25) 0%, #02050A 70%);
}

/* Video na pozadí */
.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;        /* vyplní kontejner bez deformací */
    z-index: 0;
}

/* Gradient overlay nad videem */
.hero__overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Obsah nad videem a overlay */
.hero .container {
    position: relative;       /* nad videem i overlay */
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60vh;
}

.hero .leva {
    max-width: 60%;
}

.hero h1 {
    font-size: 120px;
    font-weight: 700;
}

.hero h1.specialni {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFFFFF;
    color: transparent;
    margin-top: -50px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 50px;
}

.hero .btn {
    background-color: #55E6A5;
    border: none;
    color: #0a1019;
    padding: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.5s ease, transform 0.3s ease;
}

.hero .btn:hover {
    background-color: #0a1019;;
    color: #55E6A5;
    transform: translateY(-8px);
}

.hero .prava img {
    width: 100%;
    height: auto;
}

/* Responsivita */
@media (max-width: 768px) {
    .hero__video {
        object-position: center top;
    }
    .hero .container {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 2rem 1rem;
    }
    .hero .leva, .hero .prava {
        max-width: 100%;
    }
}


/* Sekce dovedností */
.dovednosti {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.dovednosti .container {
    max-width:fit-content;
    width: 100%;
}
  
/* Kontejner pro kolotoč */
.kolotoc {
    overflow: hidden;
    position: relative;
    padding-top: 50px;
}

/* Kontejner s bublinami */
.dovednosti-list {
    display: flex;
    flex-wrap: nowrap;
    animation: marquee 20s linear infinite;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
/* Efekt skla*/
.efekt-skla {
    background: rgba(0, 0, 0, 0.21);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.11);
}

.efekt-skla::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.efekt-skla::after {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}

/* Jedna bublina (odkaz) */
.dovednost {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    gap: 8px;
    color: #0a1019;
    padding: 17px 40px 17px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    border-style: solid;
    border-width: 0px 0px 2px 0px;
    border-color: #55E6A5;
}

/* Ikona uvnitř bubliny */
.dovednost-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1019;
}

.dovednost-icon svg {
    width: 20px;
    height: 20px;
    fill: #0a1019; 
}

/* Text uvnitř bubliny */
.dovednost-text {
    font-size: 14px;
    color: #0a1019;
}

/* Hover efekt */
.dovednost:hover {
    transform: translateY(-3px);
    background-color: #F3F3F3;
}

.about-flex {
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: space-between;
    margin-top: 100px;
    margin-bottom: 100px;
}
.about-content {
    width: 50%;
}

.about-image {
    width: 35%;
}

.about-icon-list li {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #55E6A5;
}

.about-text {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.6;
}

/* Statistické bloky */
.about-stats {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
}
.stat {
    text-align: left;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
}
.stat-suffix {
    font-size: 40px;
    margin-left: 10px;
    color: #55E6A5;
}
.stat-label {
    font-size: 14px;
    color: #55E6A5;
    margin-top: 10px;
    text-transform: uppercase;
}

/* Obrázek */
.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Služby */
.sluzby {
    background: url(/img/noise.png) no-repeat;
    background-position: center;
    background-size: cover;
    text-align: left;
    padding-top: 100px;
    padding-bottom: 150px;
}

.sluzby h4 {
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-align: center;
}

.sluzby h2 {
    text-align: center;
}

.sluzby-karty {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.karta-sluzby {
    border-style: solid;
    border-width: 0px 0px 3px 0px;
    border-color: #55E6A5;
    padding: 50px;
    width: 250px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 30%;
}

.karta-sluzby:hover {
    background-color: transparent;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.karta-sluzby img {
    max-width: 60px;
    margin-bottom: 16px;
}

h3.modry-nadpis {
    color:#55E6A5;
    margin-top: -10px;
    font-weight: 500;
    font-style: italic;
    text-transform: capitalize;
}

.karta-sluzby p {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    margin-top: 20px;
    font-weight: 400;
    color: #c0c0c0;
}

/* KONKURENČNÍ VÝHODY */

.konkurence {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 100px;
    background-color: #02050a;
}

.konkurence h4 {
    color: #55E6A5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* --- Seznam výhod --- */
.konkurence-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Jednotlivá karta výhod */
.konkurence-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1 1 200px;
}
.konkurence-item .ikonka {
    width: 100px;
    height: 100px;
}
.konkurence-item h3 {
    margin: 0;
    font-size: 18px;
    color: #fff;
}
  

/* Projekty */
.projekty {
    margin-top: -50px;
    padding-top: 50px;
    padding-bottom: 100px;
    text-align: center;
    border-radius: 30px 30px 0px 0px;
    background-color: #02050a;
    
}

.projekty h4 {
    color: #55E6A5;
    margin-bottom: 16px;
}

.projekty-seznam {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.projekt {
    background-color: #02050A;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 33%;
    height: 400px;
}

.projekt img {
    width: 100%;
    height: 85%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.projekt a {
    text-decoration: none;
    color: inherit;
}

.projekt:hover{
    transform: translateY(-8px);
}


.projekt h3 {
    font-size: 18px;
    padding: 16px;
    text-align: center;
    text-transform: none;
}

/* Recenze */
.recenze {
    padding: 64px 32px;
    background-color: #02050A;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}

.recenze h4 {
    color: #55E6A5;
    margin-bottom: 16px;
}

.recenze-slider {
    position: relative;
    overflow: hidden;
    min-height: 200px;
    max-height: 900px;
}

.recenze-item {
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.recenze-item p {
    font-size: 21px;
    margin-bottom: 0.5rem;
}

.recenze-item span {
    font-size: 18px;
    color: #55E6A5;
}
.recenze-nav {
    margin-top: 8px;
}
.recenze-nav .btn {
    background-color: #55E6A5;
    border: none;
    color: #02050A;
    padding: 12px 24px;
    border-radius: 5px;
    margin: 0 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 18px;
}
.recenze-nav .btn:hover {
    background-color: #55E6A5;
}

/* KONTAKTNÍ SEKCE - VYLEPŠENÁ */
.kontakt {
    background: url(/img/noise.png) no-repeat;
    background-position: center;
    background-size: cover;
    text-align: left;
    padding-top: 100px;
    padding-bottom: 100px;
}

.kontakt h2 {
    text-align: center;
}

.kontakt-podnadpis {
    margin-bottom: 60px;
    font-size: 21px;
    color: #fff;
    text-align: center;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.kontakt-formular {
    padding: 40px;
    border-radius: 8px;
    border-style: solid;
    border-width: 0px 0px 3px 0px;
    border-color: #55E6A5;
}

.kontakt-info {
    position: sticky;
    top: 120px;
}

.kontakt-info-blok {
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-style: solid;
    border-width: 0px 0px 3px 0px;
    border-color: #55E6A5;
}

.kontakt-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #55E6A5;
    position: relative;
    padding-bottom: 15px;
}

.kontakt-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #55E6A5;
}

.kontakt-polozka {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.kontakt-polozka svg {
    flex-shrink: 0;
}

.kontakt-polozka a, .kontakt-polozka span {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kontakt-polozka a:hover {
    color: #55E6A5;
}

.socialni-site {
    display: flex;
    gap: 20px;
}

.socialni-site a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #02050A;
    transition: all 0.3s ease;
}

.socialni-site a:hover {
    background-color: #55E6A5;
}

.socialni-site a:hover svg {
    stroke: #02050A;
}

/* ELEGANTNÍ FORMULÁŘ */
.elegant-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.elegant-form input,
.elegant-form textarea {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.elegant-form input:focus,
.elegant-form textarea:focus {
    border-color: #55E6A5;
    outline: none;
}
.elegant-form ::placeholder {
    color: #fff;
}
.elegant-form textarea {
    min-height: 150px;
    resize: vertical;
}

.elegant-form label {
    color: #fff;
    pointer-events: none;
    transition: all 0.3s ease;
    padding: 0 5px;
}

.elegant-form input:focus + label,
.elegant-form input:not(:placeholder-shown) + label,
.elegant-form textarea:focus + label,
.elegant-form textarea:not(:placeholder-shown) + label {
    font-size: 12px;
    color: #55E6A5;
}
.form-group.consent {
    display: flex;
}
.form-group.consent input {
    width: 10% !important;
    border: 0px !important;
}
.btn-odeslat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #55E6A5;
    color: #0a1019;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 10px;
}

.btn-odeslat:hover {
    background-color: #45c795;
    transform: translateY(-3px);
}

.btn-odeslat svg {
    transition: transform 0.3s ease;
}

.btn-odeslat:hover svg {
    transform: translateX(5px);
}

/* Styly pro zprávu formuláře */
.formular-zprava {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
}

.formular-zprava.uspech {
    background-color: rgba(85, 230, 165, 0.2);
    color: #55E6A5;
    border: 1px solid #55E6A5;
}

.formular-zprava.chyba {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}
/* --- Poptávkový formulář: layout doplňky --- */
.form-row.two { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}
.form-row.services {
    width: 50%;
}
.form-sluzba {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.form-sluzba input {
    width: 25%;
}
.form-row.two .form-group { 
    width: 100%; 
}

@media (max-width: 768px)
{ 
    .form-row.two { 
        grid-template-columns: 1fr; 
    } 
}

.group-label { 
    display:block; 
    margin-bottom:10px; 
    color:#fff; 
    font-weight:600; 
}

/* Rozpočet (range) */
.budget-row { 
    display:flex; 
    align-items:center; 
    gap:16px; 
}

#budget { 
    width:100%; 
    appearance:none; 
    background:linear-gradient(90deg, #55E6A5 var(--fill, 30%), rgba(255,255,255,0.18) 0);
    height:6px; 
    border-radius:3px; 
    outline:none; 
}

#budget::-webkit-slider-thumb {
    appearance:none; 
    width:18px; 
    height:18px; 
    border-radius:50%; 
    background:#55E6A5; 
    cursor:pointer;
}

#budgetOut {
    min-width: 120px;
    text-align:right; 
    color:#55E6A5; 
    font-weight:600; 
}

.budget-presets {
    display:flex; 
    flex-wrap:wrap; 
    gap:8px; 
    margin-top:10px; 
}

.preset { 
    background:transparent;
    border:1px solid rgba(255,255,255,0.18);
    color:#fff; 
    padding:8px 12px; 
    border-radius:999px; 
    cursor:pointer; 
}

.preset[aria-pressed="true"] { 
    border-color:#55E6A5; 
    color:#55E6A5; 
}

/* File input */
.file-input input[type="file"] { 
    display:none; 
}

.file-label {
  display:inline-flex; 
  align-items:center; 
  justify-content:center; 
  gap:10px;
  background-color:transparent; 
  color:#fff; 
  border:1px dashed rgba(255,255,255,0.25);
  padding:12px 16px; 
  border-radius:8px; 
  cursor:pointer;
}

.file-name { display:block; margin-top:8px; color:#c0c0c0; }

/* Počítadlo + chyby */
.field-hint { display:flex; justify-content:space-between; margin-top:6px; }
.field-count { color:#c0c0c0; }
.field-error { color:#ff6b6b; }

/* Invalid vizuál */
.elegant-form .invalid { border-color: #ff6b6b !important; }

/* Stavové hlášení nad formulářem */
.form-status { margin-bottom: 16px; padding: 12px; border-radius: 6px; display:none; }
.form-status.success { display:block; background-color: rgba(85,230,165,0.15); color:#55E6A5; border:1px solid #55E6A5; }
.form-status.error   { display:block; background-color: rgba(255,0,0,0.12); color:#ff6b6b; border:1px solid #ff6b6b; }

/* Selecty sjednotit s inputy */
.elegant-form select {
  width:100%; 
  padding:15px; 
  color:#fff;
  border:1px solid rgba(255,255,255,0.1); 
  border-radius:4px; 
  font-size:16px;
  background: black;
}

.elegant-form {
  width:100%; 
  padding:15px; 
  color:#fff;
  border:1px solid rgba(255,255,255,0.1); 
  border-radius:4px; 
  font-size:16px;
}
.elegant-form select:focus {
    border-color:#55E6A5; 
    outline:none; 
}

.elegant-form label.static { 
    position: static; 
    display:block; 
    margin-bottom: 8px; 
    color:#fff; 
}

/* Footer */
footer {
    padding: 32px 0;
    background-color: #02050A;
    color: #fff;
    text-align: center;
}

footer .footer-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 16px;
}

footer .footer-menu ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

footer .footer-menu ul li a:hover {
    color: #55E6A5;
}


/* Definice animací */
/*Fade In Left*/
@keyframes fadeInLeft {
    from {opacity: 0; transform: translate3d(-100%, 0, 0); }
    to {opacity: 1; transform: translate3d(0, 0, 0); }
}

/*Fade In Right*/
@keyframes fadeInRight {
    from {opacity: 0; transform: translate3d(100%, 0, 0); }
    to {opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes zoomIn {
    from {opacity: 0; transform: scale3d(.3, .3, .3);}
    to {opacity: 1;}
}

/* keyframes: posun z nuly na polovinu šířky (protože seznam bude zdvojený) */
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Třídy pro přiřazení animace */
.animate {
    opacity: 0;
}
.animate.visible {
    opacity: 1;
    animation-duration: 1.25s
}
.fadeInLeft.visible {
    animation-name: fadeInLeft;
}
.fadeInRight.visible {
    animation-name: fadeInRight;
}
.zoomIn.visible {
    animation-name: zoomIn;
}

/* === RESPONSIVNÍ STYLY === */

/* Tablety a menší notebooky */
@media (max-width: 1024px) {
    h2 {
        font-size: 28px;
    }
    header .menu ul {
        margin-left: 0px;
    }
    .hero h1 {
        font-size: 80px;
    }

    .hero .container {
        flex-direction: column;
        height: auto;
        gap: 32px;
    }

    .about-flex {
        flex-direction: column;
        gap: 40px;
        padding: 30px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .about-stats {
        flex-wrap: wrap;
    }

    .about-content, .about-image {
        width: 100%;
    }
    .konkurence {
        padding-top: 30px;
        padding-bottom: 30px;
        padding: 30px;
    }
    .konkurence-item .ikonka {
        width: 50px;
        height: 50px;
    }
    .konkurence-item {
        justify-content: center;
    }
    .sluzby {
        padding-top: 30px;
        padding-bottom: 30px;
        padding: 30px;
        
    }
    .sluzby-karty {
        gap: 20px;
    }

    .karta-sluzby {
        width: 45%;
        padding: 30px;
    }

    .projekty-seznam {
        flex-direction: column;
    }

    .projekt {
        width: 100%;
        height: 300px;
    }
    .projekt h3 {
        padding: 8px;
    }
    .projekty {
        padding: 30px;
    }
    .kontakt {
        padding: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .footer-menu ul {
        flex-wrap: wrap;
    }
    footer .footer-menu ul {
        flex-direction: column;
    }
}

/* Mobily */
@media (max-width: 768px) {
    header .menu ul {
        flex-direction: column;
        gap: 16px;
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        background-color: #0a1019;
        display: none;
        padding: 16px 0;
    }

    header .menu ul.show {
        display: flex;
    }
    header .tlacitko-hlavicka .btn {
        display: none;
    }

    .menu-ikona {
        display: flex;
        margin-left: 16px;
    }
    .hero {
        padding: 30px;
    }
    .hero h1 {
        font-size: 60px;
        text-align: center;
    }
    .hero h1.specialni {
        margin-top: -0px;
    }

    .hero .leva {
        max-width: 100%;
        text-align: center;
    }

    .hero .btn {
        display: inline-block;
    }
    .dovednosti {
        text-align: center;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .kolotoc {
        padding-top: 10px;
    }

    .dovednost-text {
        font-size: 16px;
    }

    .karta-sluzby {
        width: 100%;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-suffix {
        font-size: 30px;
    }

    .recenze-item p {
        font-size: 18px;
    }

    .kontakt form {
        padding: 0 16px;
    }
}

/* Cookie banner */
#cookie-banner, #cookie-modal-backdrop {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  z-index: 9999;
}
#cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: rgba(10,16,25,.98);
  color: #fff; padding: 18px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.25);
}
#cookie-banner .inner {
  max-width: 1100px; margin: 0 auto; display: grid; gap: 12px;
}
#cookie-banner p { margin: 0; line-height: 1.5; }
#cookie-banner .actions { display: flex; gap: 10px; flex-wrap: wrap; }
#cookie-banner button, #cookie-banner a.btn {
  border: 0; padding: 10px 14px; cursor: pointer; border-radius: 10px; font-weight: 600;
}
#cookie-accept { background: #23c55e; color: #0a1019; }
#cookie-reject { background: #192334; color: #fff; }
#cookie-settings { background: #ffffff; color: #0a1019; }
#cookie-more { color: #9db2ce; text-decoration: underline; }

@media (min-width: 768px) {
  #cookie-banner .inner { grid-template-columns: 1fr auto; align-items: center; }
}

/* Modal preferencí */
#cookie-modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); display: none;
}
#cookie-modal {
  position: fixed; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, 92vw);
  background: #0a1019; color: #fff; border-radius: 16px;
  padding: 20px; box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
#cookie-modal h3 { margin-top: 0; }
.cookie-row {
  display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center;
  padding: 12px 0; border-top: 1px solid #1b2636;
}
.cookie-row small { color: #9db2ce; display: block; }
.toggle {
  appearance: none; width: 48px; height: 28px; border-radius: 999px; position: relative;
  background: #3a4a61; outline: none; cursor: pointer; transition: background .2s;
}
.toggle:checked { background: #23c55e; }
.toggle::after {
  content: ""; position: absolute; left: 4px; top: 4px; width: 20px; height: 20px;
  background: #fff; border-radius: 50%; transition: transform .2s;
}
.toggle:checked::after { transform: translateX(20px); }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 16px; }
.modal-actions button {
  border: 0; padding: 10px 14px; border-radius: 10px; font-weight: 600; cursor: pointer;
}
.btn-primary { background: #23c55e; color: #0a1019; }
.btn-neutral { background: #192334; color: #fff; }

/* Volitelné: odkaz ve footeru */
.manage-cookies-link { color: #9db2ce; text-decoration: underline; cursor: pointer; }
