/* Fonty - Lokálne hostované (latin-ext pre správne zobrazenie diakritiky) */

/* open-sans-300 - latin-ext */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/open-sans-v44-latin-ext-300.woff2') format('woff2');
}

/* open-sans-regular - latin-ext */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/open-sans-v44-latin-ext-regular.woff2') format('woff2');
}

/* open-sans-500 - latin-ext */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/open-sans-v44-latin-ext-500.woff2') format('woff2');
}

/* open-sans-600 - latin-ext */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/open-sans-v44-latin-ext-600.woff2') format('woff2');
}

/* open-sans-700 - latin-ext */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/open-sans-v44-latin-ext-700.woff2') format('woff2');
}

/* open-sans-800 - latin-ext */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: url('fonts/open-sans-v44-latin-ext-800.woff2') format('woff2');
}

/* montserrat-300 - latin-ext */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/montserrat-v31-latin-ext-300.woff2') format('woff2');
}

/* montserrat-regular - latin-ext */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/montserrat-v31-latin-ext-regular.woff2') format('woff2');
}

/* montserrat-500 - latin-ext */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/montserrat-v31-latin-ext-500.woff2') format('woff2');
}

/* montserrat-600 - latin-ext */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/montserrat-v31-latin-ext-600.woff2') format('woff2');
}

/* montserrat-700 - latin-ext */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/montserrat-v31-latin-ext-700.woff2') format('woff2');
}

/* montserrat-800 - latin-ext */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('fonts/montserrat-v31-latin-ext-800.woff2') format('woff2');
}

/* montserrat-900 - latin (fallback) */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    src: url('fonts/montserrat-v31-latin-900.woff2') format('woff2');
}

/* Premenné */
:root {
    --color-bg: #ffffff;
    --color-text: #000000;
    --color-blue: #0f3442;
    --color-orange: #FF5C00;
    --color-teal: #36D1B2;
    --color-brand-green: #52c4a3;
    --color-yellow: #FFD54F;
    --color-gray: #757575;
    --color-light-gray: #F5F5F5;

    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;

    --padding-mobile: 20px;
    --padding-desktop: 80px;

    --transition: all 0.3s ease;

    /* Predvolené hodnoty pre Vibe Editor (JS ich prepíše pri výbere témy cez inline štýl na html) */
    --accent-color: #ffffff;
    --bg-color: linear-gradient(135deg, #0b1e25 0%, #0f3442 100%);
    --text-color: #ffffff;
    --field-bg: rgba(255, 255, 255, 0.12);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.5;
    overflow-x: hidden;
    max-width: 100vw;
}

h1,
h2,
h3 {
    font-family: var(--font-primary);
    font-weight: 800;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Hlavička a navigácia */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px var(--padding-mobile);
    background: transparent;
}

@media (min-width: 1024px) {
    .main-header {
        padding: 40px var(--padding-desktop);
    }
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1920px;
    margin: 0 auto;
}


.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px;
    color: var(--color-text);
    transition: color 0.4s ease;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Svetlý mód navigácie */
.main-header.nav-light-mode .menu-toggle {
    color: #ffffff;
}

.main-header.nav-light-mode .hamburger span {
    background-color: #ffffff;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    padding: 85px var(--padding-mobile) 40px;

    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    z-index: 5;
}

@media (min-width: 1024px) {
    .hero-section {
        display: grid;
        grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
        align-items: center;
        padding: 0 var(--padding-desktop);
        gap: 0;
        overflow: visible;
    }
}

.hero-content {
    z-index: 10;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-content {
        max-width: 700px;
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 10px;

    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--color-blue);
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 2.8rem;
    }
}

.accent-blue {
    color: var(--color-blue);
}

.accent-teal {
    color: var(--color-teal);
}

.accent-orange {
    color: var(--color-orange);
}

.qr-label {
    display: block;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 400;
    font-family: var(--font-secondary);
    color: var(--color-blue);
    margin-top: 10px;
}

@media (min-width: 1024px) {
    .qr-label {
        display: inline-block;
        text-align: left;
        font-size: 2rem;
        margin-left: 15px;
        margin-top: 0;
        vertical-align: middle;
    }
}

/* Kontrola URL */
.search-container {
    margin: 40px 0 25px 0;

}

@media (min-width: 1024px) {
    .search-container {
        margin: 40px 0 50px 0;

    }
}

.search-input-wrapper {
    display: flex;
    align-items: baseline;
    padding: 10px 0;
    font-weight: 300;
    font-family: var(--font-secondary);
}

@media (min-width: 1024px) {
    /* Desktop špecifické úpravy pre typewriter sú nižšie v jednotlivých triedach */
}

.domain-prefix {
    color: var(--color-blue);
    font-weight: 800;
    flex-shrink: 0;
    font-size: 2.2rem;
    transition: color 0.6s ease;
}

@media (min-width: 1024px) {
    .domain-prefix {
        font-size: 3.5rem;
    }
}

.typewriter-text {
    padding-left: 5px;
    color: var(--color-blue);
    white-space: nowrap;
    font-size: 1.5rem;
    transition: color 0.6s ease;
}

@media (min-width: 1024px) {
    .typewriter-text {
        font-size: 2.8rem;

    }

    .domain-prefix {
        font-size: 2.8rem;

    }
}

@media (min-width: 1440px) {
    .typewriter-text {
        font-size: 3.5rem;
    }

    .domain-prefix {
        font-size: 3.5rem;
    }
}

.cursor {
    color: var(--color-blue);
    animation: blink 1s step-end infinite;
    font-weight: 300;
    transition: color 0.6s ease;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* List */
.target-list {
    margin-bottom: 40px;
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .target-list {
        font-size: 1.25rem;
        /* Pôvodná veľkosť */
    }
}

/* Buttons and Price */
.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 20px;
    margin-bottom: 30px;
}

@media (min-width: 1024px) {
    .cta-group {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
}

.btn-primary {
    background-color: var(--color-blue);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(15, 52, 66, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(15, 52, 66, 0.4);
}

.price-info {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 2px;
    display: block;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .price-info {
        align-items: center;
        text-align: center;
    }
}

.price-main {
    font-size: 2rem;
    font-weight: 600;
}

.price-sub {
    font-size: 1.25rem;
    color: var(--color-gray);
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: white;
    color: black;
    border: 3px solid var(--color-teal);
    border-radius: 50%;
    font-family: var(--font-secondary);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.1;
    padding: 10px;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(54, 209, 178, 0.2);
}

.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(54, 209, 178, 0.4);
}

@media (min-width: 1024px) {
    .btn-secondary {
        margin-left: 20px;
        width: 120px;
        height: 120px;
        font-size: 0.95rem;
    }
}

@media (max-width: 1023px) {
    .btn-secondary {
        margin: 30px auto;
    }
}

/* Phone Frame */
.phone-frame-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    order: 2;

}

@media (min-width: 1024px) {
    .phone-frame-container {
        margin-top: 0;
        max-width: none;
        padding-left: 40px;
    }
}

.phone-wrapper {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: 80%;
}

/* Tieň */
.phone-wrapper::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
}

@media (min-width: 1440px) {
    .phone-wrapper {
        max-width: 450px;
    }
}

.phone-frame {
    display: block;
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Obrazovka */
.phone-screen {
    position: absolute;
    top: 1.5%;
    left: 3%;
    width: 94%;
    height: 97%;
    border-radius: 8%;

    overflow: hidden;
    pointer-events: none;
    z-index: 1;

    background-color: #111;

}

@media (min-width: 1024px) {
    .phone-screen {
        border-radius: 30px;

    }
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 0;
    transition: transform 0.6s ease-in-out;
}

.slider-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorations */
/* Dekorácie */
.hero-deco-ring {
    position: absolute;
    border-radius: 50%;
    border-width: 6px;
    border-style: solid;
    pointer-events: none;
    z-index: -1;
}

.ring-top-yellow {
    width: 160px;
    height: 160px;
    border-color: var(--color-yellow);
    top: -100px;
    left: 45%;
}

.ring-top-orange {
    width: 150px;
    height: 150px;
    border-color: #FF7043;
    top: -65px;
    left: 55%;
}

.ring-bottom-blue {
    width: 180px;
    height: 180px;
    border-color: var(--color-blue);
    bottom: -130px;
    right: 15%;
}

.ring-bottom-green {
    width: 170px;
    height: 170px;
    border-color: var(--color-brand-green);
    bottom: -105px;
    right: 5%;
    z-index: 20;
}

@media (max-width: 768px) {
    .hero-deco-ring {
        border-width: 4px;
    }

    /* Posunuté hore na miesto pôvodného modrého kruhu */
    .ring-top-yellow {
        width: 100px;
        height: 100px;
        top: -50px;
        left: -30px;
    }

    .ring-top-orange {
        width: 90px;
        height: 90px;
        top: -55px;
        left: 30px;
    }

    /* Spodné krúžky pre mobily */
    .ring-bottom-blue {
        width: 110px;
        height: 110px;
        top: 43%;

        right: -80px;

        bottom: auto;
    }

    .ring-bottom-green {
        width: 100px;
        height: 100px;
        bottom: -55px;
        right: -20px;
        z-index: 20;
    }
}

.decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decor {
    position: absolute;
    z-index: -1;

}

/* Animácie */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 10s linear infinite;
}

/* Detaily dekorácií */
/* DESKTOP */
@media (min-width: 1024px) {
    .deco-magic-1 {
        top: calc(12% - 60px);
        left: 5%;
        width: 38px;
        z-index: -1;
    }

    .deco-pen-1 {
        top: 15%;
        right: 9%;
        width: 50px;
        z-index: -1;
        transform: rotate(15deg);
    }

    .deco-x-1 {
        top: 10%;
        left: 14%;
        width: 20px;
        z-index: -1;
        transform: scale(1.1);
    }



    .deco-qr-spin-small {
        top: 24%;
        left: calc(40% + 120px);
        width: 30px;
        z-index: -1;
        opacity: 0.7;
    }

    .deco-circle-2 {
        bottom: 18%;
        left: 48%;
        width: 22px;
        z-index: -1;
        transform: scale(1.2);
    }

    .deco-circle-spin {
        top: 45%;
        right: 42%;
        width: 25px;
        z-index: -1;
    }

    .deco-x-spin-1 {
        top: 30%;
        right: 8%;
        width: 20px;
        z-index: -1;
    }

    .deco-x-spin-2 {
        bottom: 35%;
        right: 12%;
        width: 25px;
        z-index: -1;
    }
}

/* Responzivita */
@media (min-width: 1024px) and (max-width: 1600px) {

    .deco-magic-1,
    .deco-x-1 {
        display: none !important;
    }

    .deco-rgb-top {
        transform: scale(0.5);
        transform-origin: top left;
    }

}

/* MOBILE */
@media (max-width: 1023px) {


    .deco-pen-mob-1 {
        top: 8%;
        right: calc(-5% + 40px);
        width: 35px;
        z-index: -1;
        opacity: 0.6;
    }

    .deco-x-mob-1 {
        top: calc(6% - 50px);
        left: calc(50% - 61px);
        width: 20px;
        z-index: -1;
    }

    .deco-magic-mob-1 {
        top: calc(55% - 50px);
        left: calc(-5% + 40px);
        width: 35px;
        z-index: -1;
        opacity: 0.7;
    }

    .deco-circle-mob-1 {
        bottom: 57%;
        right: 8%;
        width: 20px;
        z-index: -1;
    }

    .deco-circle-spin-mob {
        top: 65%;
        left: 5%;
        width: 25px;
        z-index: -1;
    }

    .deco-x-spin-mob-1 {
        top: calc(75% + 10px);
        right: 5%;
        width: 20px;
        z-index: -1;
    }
}

/* Visibility Helpers */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

@media (min-width: 1024px) {
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }
}

/* Ako to funguje */
.features-section {
    min-height: 100vh;
    padding: 80px var(--padding-mobile);
    background: linear-gradient(135deg, #121212 0%, #262626 100%);
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.features-section .accent-teal {
    color: var(--color-brand-green);
}

@media (min-width: 1024px) {
    .features-section {
        padding: 100px var(--padding-desktop);
    }
}

.features-section .container {
    width: 100%;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.8rem;
    }
}

.title-accent {
    display: block;
    font-size: 1.2rem;
    color: inherit;
    opacity: 0.9;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #000000;
    max-width: none;
    margin: 0 auto;
}

.features-section .section-subtitle {
    color: #ffffff;
}

@media (min-width: 1024px) {
    .section-subtitle {
        white-space: nowrap;
    }
}


.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.step-card {
    background: white;
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--color-blue);
    font-family: var(--font-primary);
    font-weight: 700;
}

.step-num-1 {
    color: var(--color-yellow);
}

.step-num-2 {
    color: #FF7043;
}

.step-num-3 {
    color: #10B981;
}

.step-description {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    font-family: var(--font-secondary);
}

.features-extra {
    margin-top: 50px;
    text-align: center;
    width: 100%;
}

.features-extra h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    white-space: nowrap;
    /* Nadpis na jeden riadok */
}

@media (max-width: 768px) {
    .features-extra h4 {
        white-space: normal;
        /* Na mobile povoliť zalomenie */
        font-size: 1.1rem;
    }
}

.features-extra p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-family: var(--font-secondary);
}

.more-info-link {
    color: var(--color-brand-green);
    font-weight: 700;
    transition: var(--transition);
    display: inline;
}

.more-info-link:hover {
    color: white;
    text-decoration: underline;
}


/* Jednostránkové weby a varianty */
.use-cases-section {
    min-height: 100vh;
    padding: 80px var(--padding-mobile);
    background-color: var(--color-bg);
    color: var(--color-text);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .use-cases-section {
        padding: 100px var(--padding-desktop);
    }
}

.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
}

@media (min-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 80px;
        /* Fixná medzera pre rovnomerné rozloženie */
    }
}

.use-case-item {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.use-case-item:last-child {
    border-bottom: none;
}

@media (min-width: 1024px) {
    .use-case-item {
        padding: 0;
        border-bottom: none;
        border-right: none;
        position: relative;
        /* Pre umiestnenie čiary */
    }

    /* Elegantná vertikálna čiara presne v strede gapu */
    .use-case-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: -40px;
        /* Polovica z 80px gapu */
        width: 1px;
        background: rgba(0, 0, 0, 0.1);
    }
}

.use-case-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000000;
    text-transform: uppercase;
}

.use-cases-section .section-title {
    background: linear-gradient(135deg, #121212 0%, #262626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.use-case-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.8;
}

.use-case-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #ededed;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    overflow: hidden;
}

.use-case-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.use-case-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.use-case-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.use-case-list li::before {
    content: "•";
    color: var(--color-teal);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.use-case-item .btn-primary {
    align-self: flex-start;
    background-color: var(--color-brand-green);
    border-color: var(--color-brand-green);
    box-shadow: 0 4px 15px rgba(82, 196, 163, 0.3);
}

.use-case-item .btn-primary:hover {
    background-color: #45b393;
    border-color: #45b393;
    box-shadow: 0 6px 20px rgba(82, 196, 163, 0.4);
}

/* Úprava presahov */
.hero-section {
    overflow: visible;
}

@media (min-width: 1024px) {
    .decor[style*="bottom"] {
        z-index: 10;
        transform: translateY(50%);

    }
}

/* Vibe Editor a Objednávka */
/* Predvolené farby sú nastavené cez :root premenné – JS ich prepíše pri výbere témy */
#vibe-editor {
    background: var(--bg-color);
    color: var(--text-color);
    padding: 60px var(--padding-mobile) 20px;
    transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    #vibe-editor {
        padding: 80px var(--padding-desktop) 40px;
    }
}

#vibe-editor .container {
    width: 100%;
    margin: 0 auto;
}

/* Kontrola URL */
.vibe-header {
    margin-bottom: 20px;

}

.url-checker {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;

}

#dynamic-domain-display {
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    transition: color 0.6s ease;
}


.url-input::placeholder {
    color: var(--color-brand-green);
    opacity: 1;
    font-weight: 400;
}

@media (max-width: 768px) {
    .url-checker {
        gap: 0;

    }

    #dynamic-domain-display {
        font-size: 2.2rem;

        line-height: 1.1;
        display: block;
        width: 100%;
    }

    .url-input {
        font-size: 1.4rem !important;
        color: var(--color-teal) !important;
        border-bottom-width: 1px !important;
        opacity: 0.9;
        margin-left: 0;
        padding-left: 0;
    }

    .url-input::placeholder {
        color: var(--color-teal) !important;
        opacity: 0.8;
    }
}

.url-prefix {
    font-size: 2rem;

    font-weight: 900;
    color: var(--accent-color);
    letter-spacing: -0.02em;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.url-input {
    background: transparent;
    border: none;
    border-bottom: 3px solid var(--accent-color);
    padding: 2px 0;
    caret-color: var(--accent-color);

    font-size: 2rem;

    font-weight: 800;
    width: 100%;

    max-width: 300px;
    min-width: 0;

    color: var(--text-color);
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {

    .url-checker {
        display: flex;
        align-items: baseline;
        width: 100%;

    }

    .url-prefix,
    .url-input {
        font-size: 3.5rem;
    }

    .url-input {
        flex: none;
        width: 600px;

        max-width: none;
        padding: 5px 0;
    }
}


.url-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.url-status {
    font-size: 1.5rem;
    font-weight: 800;
    margin-left: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

@media (min-width: 1024px) {
    .url-status {
        font-size: 1.8rem;
    }
}

#vibe-editor .url-status.checking {
    color: #8f2626 !important;
    opacity: 1;
}

.url-status.available {
    color: #10B981;
    opacity: 1;
    transform: scale(1.5);
}

.url-status.taken {
    color: #EF4444;
    opacity: 1;
    transform: scale(1.5);
}

#vibe-editor .section-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-top: 30px;
    margin-bottom: 10px;
    opacity: 0.8;
    color: var(--text-color, var(--accent-color));
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Výber témy */
.theme-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.theme-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.theme-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.theme-btn.active {
    box-shadow: 0 0 0 4px var(--accent-color);
    transform: scale(1.1);
}

.theme-btn.empty {
    background: rgba(0, 0, 0, 0.05);
    border: 2px dashed #ccc;
    cursor: default;
    box-shadow: none;
}

.theme-btn.custom-theme-btn.active {
    box-shadow: 0 0 0 4px #0C2C55;
    transform: scale(1.1);
}

/* Formulár */
.modern-form {
    background: transparent;
    padding: 0;
    border: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;

}

@media (min-width: 900px) {
    .form-grid {
        grid-template-columns: 1.25fr 0.75fr;
        gap: 60px;
        /* Pôvodná medzera na desktope */
    }
}

.modern-field {
    margin-bottom: 25px;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 900px) {
    .modern-field {
        margin-bottom: 35px;
    }
}

.modern-field label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
    /* Zvýšená viditeľnosť */
    margin-bottom: 5px;
    color: var(--text-color);
}

.modern-field input::placeholder,
.modern-field textarea::placeholder {
    color: var(--text-color);
    opacity: 0.5;
    /* Viac biele / viditeľné na tmavom */
}

.modern-field input,
.modern-field textarea {
    background: var(--field-bg);
    border: none;
    border-bottom: 2px solid var(--accent-color, rgba(0, 0, 0, 0.1));
    padding: 15px 0;
    font-size: 1.1rem;
    width: 100%;
    color: var(--text-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modern-field input:focus,
.modern-field textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    padding-left: 15px;
    background: var(--field-bg);
}

.tri-inputs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .tri-inputs {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
}

/* Nahrávanie súborov */
.upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.premium-upload {
    cursor: pointer;
}

.premium-upload input {
    display: none;
}

.upload-card {
    background: var(--field-bg, white);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 20px 15px;
    text-align: center;
    border: 2px solid var(--accent-color, transparent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.premium-upload:hover .upload-card {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.upload-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.upload-label {
    display: block;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.upload-hint {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* Checkboxy */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
}

.checkbox-container input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.discount-check {
    margin-top: 30px;
    padding: 20px;
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.discount-check:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.3);
}

.private-check {
    margin-top: 15px;
    padding: 20px;
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.private-check:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.3);
}

.btn-success {
    background-color: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
    cursor: default !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Štýly pre zoznam vybraných súborov */
.file-preview-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.file-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-color);
    animation: fadeIn 0.3s ease;
    width: 100%;
}

.file-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.remove-file-btn {
    background: rgba(255, 77, 77, 0.1);
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 1.1rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.remove-file-btn:hover {
    background: #ff4d4d;
    color: white;
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.info-icon-trigger {
    color: var(--accent-color);
    cursor: pointer;
    display: flex;
    opacity: 0.5;
    transition: all 0.3s ease;
    padding: 5px;
}

.info-icon-trigger:hover {
    opacity: 1;
    transform: scale(1.1);
}

.info-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0;
    width: 280px;
    background: #111;
    color: white;
    padding: 18px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    pointer-events: none;
}

.info-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 15px;
    border-width: 8px;
    border-style: solid;
    border-color: #111 transparent transparent transparent;
}

.info-wrapper:hover .info-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .private-check {
        padding: 15px;
    }

    .info-tooltip {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: auto;
        transform: translateY(20px);
        text-align: center;
    }

    .info-tooltip::after {
        display: none;
    }

    .info-wrapper:hover .info-tooltip {
        transform: translateY(0);
    }
}

/* Päta formulára */
.form-footer {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}

.gdpr-check {
    display: flex;
    justify-content: center;
}

.submit-btn {
    background: var(--field-bg, rgba(255, 255, 255, 0.5));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-color, #1E293B);
    border: 2px solid var(--accent-color, rgba(0, 0, 0, 0.1));
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

/* Témy */

/* 1. Vibe Sand - Tvoja svadobná klasika (Jemný piesok) */
#vibe-editor[data-theme="vibe-sand"] {
    --bg-color: linear-gradient(135deg, #F5EBD0 0%, #FFFBF1 100%);
    --text-color: #433422;
    --accent-color: #D4A373;
    --field-bg: #FFF2D0;
}

/* 2. Vibe Blush - Púdrová ruža (Romantika / Beauty) */
#vibe-editor[data-theme="vibe-blush"] {
    --bg-color: linear-gradient(135deg, #F2E6E6 0%, #FCF8F8 100%);
    --text-color: #4A3737;
    --accent-color: #E29595;
    --field-bg: #F9DFDF;
}

/* 3. Vibe Burger - Sýta tmavočervená s horčicovým akcentom (Gastro) */
#vibe-editor[data-theme="vibe-burger"] {
    --bg-color: linear-gradient(135deg, #1A0500 0%, #2A0800 100%);
    --text-color: #FFF3E0;
    --accent-color: #D97706;
    --field-bg: #3E160A;
}

#vibe-editor[data-theme="vibe-burger"] .upload-card {
    background: #3E160A;
    color: #FFF3E0;
}

/* 4. Vibe Graphite - Moderný tmavý brutalizmus (IT / Tech / Portfólio) */
#vibe-editor[data-theme="vibe-graphite"] {
    --bg-color: linear-gradient(135deg, #050506 0%, #09090B 100%);
    --text-color: #FAFAFA;
    --accent-color: #A1A1AA;
    --field-bg: #18181B;
}

#vibe-editor[data-theme="vibe-graphite"] .upload-card {
    background: #18181B;
    color: #FAFAFA;
}

/* 5. Vibe Minimal - Čistá lomená biela (Architektúra / Dizajn) */
#vibe-editor[data-theme="vibe-minimal"] {
    --bg-color: linear-gradient(135deg, #EBEBEB 0%, #FAFAFA 100%);
    --text-color: #171717;
    --accent-color: #525252;
    --field-bg: #F4F4F5;
}

/* 6. Vibe Sage - Zemito-zelená (Joga / Eko / Príroda) */
#vibe-editor[data-theme="vibe-sage"] {
    --bg-color: linear-gradient(135deg, #E2E4D5 0%, #F4F5F0 100%);
    --text-color: #2F3E35;
    --accent-color: #6B8E7B;
    --field-bg: #EAECE4;
}



/* 8. Vibe Navy - Tlmená polnočná modrá (Corporate / Financie / Právo) */
#vibe-editor[data-theme="vibe-navy"] {
    --bg-color: linear-gradient(135deg, #080C16 0%, #0F172A 100%);
    --text-color: #F8FAFC;
    --accent-color: #64748B;
    --field-bg: #1E293B;
}

#vibe-editor[data-theme="vibe-navy"] .upload-card {
    background: #1E293B;
    color: #F8FAFC;
}

/* 9. Vibe Terracotta - Teplá pálená hlina (Kreatíva / Umenie / Keramika) */
#vibe-editor[data-theme="vibe-terracotta"] {
    --bg-color: linear-gradient(135deg, #E9DAD4 0%, #FAF4F2 100%);
    --text-color: #5C2E1E;
    --accent-color: #C27A62;
    --field-bg: #F3E6E1;
}

/* 10. Vibe Lavender Haze - Prachová fialová (Kozmetika / Wellness / Terapia) */
#vibe-editor[data-theme="vibe-lavender"] {
    --bg-color: linear-gradient(135deg, #E5E3EB 0%, #F6F5F8 100%);
    --text-color: #3B384A;
    --accent-color: #8C84A3;
    --field-bg: #ECEAF1;
}

/* 11. Vibe Olive - Tmavá olivová (Luxusný tovar / Pánska móda / Outdoor) */
#vibe-editor[data-theme="vibe-olive"] {
    --bg-color: linear-gradient(135deg, #0D1210 0%, #1A2421 100%);
    --text-color: #E2E8E4;
    --accent-color: #8A9A86;
    --field-bg: #26332E;
}

#vibe-editor[data-theme="vibe-olive"] .upload-card {
    background: #26332E;
    color: #E2E8E4;
}

/* 12. Vibe Slate - Oceľovo modro-sivá (Moderné služby / Konzultácie) */
#vibe-editor[data-theme="vibe-slate"] {
    --bg-color: linear-gradient(135deg, #D9E2EC 0%, #F0F4F8 100%);
    --text-color: #1E293B;
    --accent-color: #64748B;
    --field-bg: #E2E8F0;
}

/* Panely a Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-panel {
    position: fixed;
    top: 0;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 2001;
    overflow-y: auto;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.right-panel {
    right: 0;
    width: 100%;
    max-width: 350px;
    background-color: #111;

    color: white;
    transform: translateX(100%);
}

.right-panel.active {
    transform: translateX(0);
}

.left-panel {
    left: 0;
    width: 100%;
    max-width: 450px;
    background-color: var(--color-light-gray);
    color: var(--color-text);
    transform: translateX(-100%);
}

/* Bottom sheet pre mobil */
@media (max-width: 767px) {
    .left-panel {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 85vh;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

.left-panel.active {
    transform: translateX(0);
}

@media (max-width: 767px) {
    .left-panel.active {
        transform: translateY(0);
    }
}

/* Close Tlačidlo */
.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    z-index: 10;
}

.close-btn.dark-btn {
    color: var(--color-text);
}

.close-btn:hover {
    transform: scale(1.1);
    color: var(--color-teal);
}

.panel-content {
    padding: 80px 40px 40px;
}

/* Logo v menu */
.menu-logo-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-start;
}

.menu-logo {
    height: 35px;
    width: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .menu-logo {
        height: 28px;
    }
}

/* Položky menu */
.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-link {
    font-size: 1.4rem;
    font-family: var(--font-primary);
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition);
}

.menu-link:hover {
    color: var(--color-teal);
    transform: translateX(10px);
}

.menu-link-omne {
    color: var(--color-teal) !important;
}

/* Položky FAQ */
.panel-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--color-blue);
    font-family: var(--font-primary);
}

.faq-content {
    padding-right: 20px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
    text-transform: none;
    font-family: var(--font-primary);
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray);
    font-family: var(--font-secondary);
}

/* Vibe Customizer Popup */
.customizer-popup {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%) translateX(120%);
    width: 300px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 22px 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    z-index: 3000;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.customizer-popup.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
    .customizer-popup {
        top: auto;
        bottom: 20px;
        right: 15px;
        left: 15px;
        width: calc(100% - 30px);
        transform: translateY(120%);
        padding: 25px 20px;
    }

    .customizer-popup.active {
        transform: translateY(0);
    }
}

.customizer-header {
    display: flex;
    justify-content: space-between;
    background: #0f3442;
    padding: 4px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 8px 5px;
    border-radius: 100px;
    border: none;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    color: white;
    background: transparent;
    letter-spacing: 0.03em;
    opacity: 0.6;
}

.tab-btn.active {
    background: var(--color-teal);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.tab-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.customizer-content {
    background: transparent;
    padding: 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-pane {
    display: none;
    width: 100%;
}

.tab-pane.active {
    display: block;
}

/* Integrated Picker UI */
.rgb-group,
.rgb-input,
.integrated-picker .picker-rgb-row {
    display: none;
}

.picker-canvas-area {
    position: relative;
    width: 100%;
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
    cursor: crosshair;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.picker-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.picker-cursor {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 5;
}

.picker-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 5px;
}

.picker-hue-row {
    width: 100%;
}

.hue-track {
    position: relative;
    width: 100%;
    height: 12px;
    border-radius: 6px;
    cursor: pointer;
}

.hue-canvas {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    display: block;
}

.hue-cursor {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.picker-rgb-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.rgb-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.rgb-input {
    width: 100%;
    text-align: center;
    padding: 10px 5px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text);
    background: #fdfdfd;
}

.rgb-group span {
    font-size: 0.8rem;
    font-weight: 800;
    color: #94A3B8;
    text-transform: uppercase;
}

.customizer-footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.btn-close-customizer {
    width: 100%;
    padding: 16px;
    border-radius: 20px;
    border: 2px solid var(--accent-color, rgba(255, 255, 255, 0.2));
    background: var(--field-bg, rgba(255, 255, 255, 0.3));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-color, #000000);
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-close-customizer:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    filter: brightness(1.2);
}


@media (max-width: 480px) {
    .tab-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* Kontakt */
.contact-section {
    position: relative;
    padding: 50px 0 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .contact-section {
        padding: 100px 0;
    }
}

.contact-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 767px) {
    .contact-section .container {
        padding: 0 20px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    position: relative;
    z-index: 10;
    width: 100%;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.1fr;
        align-items: center;
        gap: 100px;
    }
}

/* Info Column */
.contact-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.contact-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--color-blue);
    text-transform: none;
}

@media (min-width: 1024px) {
    .contact-title {
        font-size: 3rem;
    }
}


.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.contact-icon-box svg {
    width: 20px;
    height: 20px;
}

.icon-person {
    background-color: var(--color-blue);
}

.icon-loc {
    background-color: #10B981;
}


.icon-tel {
    background-color: #FBBF24;
}


.icon-mail {
    background-color: #FF7043;
}



.detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.5;
    margin-bottom: 2px;
}

.contact-text p {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-text p.contact-text-small {
    font-size: 0.86rem;
    font-weight: 400;
    opacity: 0.65;
    margin-top: 2px;
}

.hover-link:hover {
    color: var(--color-blue);
    text-decoration: underline;
}

/* Form Column */
.contact-form-container {
    padding: 0;
}

.contact-form-minimal {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.minimal-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.minimal-field label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-text);
}

.minimal-field input,
.minimal-field textarea {
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--field-bg, #ffffff);
    color: var(--color-text);
    transition: var(--transition);
}

.minimal-field input:focus,
.minimal-field textarea:focus {
    outline: none;
    border-color: var(--color-blue);
    background-color: var(--field-bg, #ffffff);
    box-shadow: 0 0 0 4px rgba(12, 44, 85, 0.05);
}

.contact-submit-btn {
    background-color: var(--color-blue);
    color: white;
    border: none;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 900;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background-color: #081e3a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(12, 44, 85, 0.2);
}

/* Dekorácie */
.contact-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco-dot {
    position: absolute;
    border-radius: 50%;
}


.dot-green {
    width: 20px;
    height: 20px;
    background: #4ADE80;
    top: 75%;
    left: 25%;
}

.dot-blue {
    width: 30px;
    height: 30px;
    background: #60A5FA;
    top: 20%;
    right: 15%;
}

.dot-yellow {
    width: 22px;
    height: 22px;
    background: #FACC15;
    top: 35%;
    left: 32%;
}

.deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 4px solid;
}

.ring-red {
    width: 120px;
    height: 120px;
    border-color: #FACC15;
    top: -40px;
    left: 40%;
    transform: translateX(-50%);
}

.ring-blue {
    width: 150px;
    height: 150px;
    border-color: var(--color-blue);
    bottom: -65px;
    right: 8%;
    opacity: 0.8;
}

.deco-bg-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    background: #F8FAFC;
    border-radius: 50%;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@media (max-width: 768px) {
    .ring-red {
        left: calc(40% + 90px);
    }

    .ring-blue {
        bottom: -95px;
        /* Posunuté nižšie */
    }

    .dot-yellow {
        left: calc(32% + 90px);
    }

    .deco-bg-circle {
        width: 300px;
        height: 300px;
    }

    .dot-blue,
    .dot-teal {
        display: none;
    }
}

/* Päta */
.main-footer {
    background: white;
    padding: 20px var(--padding-mobile) 40px;
    border-top: 1px solid #F1F5F9;
}

@media (min-width: 1024px) {
    .main-footer {
        padding: 40px var(--padding-desktop) 60px;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.footer-link {
    font-size: 0.8rem;
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    color: var(--color-blue);
    border-bottom: 1px solid var(--color-blue);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    transition: var(--transition);
}

/* Galéria */
.inspiration-section {
    padding: 30px 0 90px;
    background-color: #fcfcfc;
    overflow: hidden;
    position: relative;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--padding-mobile);
}

.carousel-container {
    position: relative;
    height: 440px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.carousel-item {
    position: absolute;
    width: 210px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    user-select: none;
    z-index: 1;
    filter: brightness(0.8) blur(2px);
    transform: scale(0.7) translateZ(-150px);
}

.carousel-item.active {
    z-index: 10;
    filter: brightness(1) blur(0);
    transform: scale(1.1) translateZ(100px);
}

.carousel-item.prev,
.carousel-item.next {
    z-index: 5;
    filter: brightness(0.9) blur(0);
}

.carousel-item.prev {
    transform: translateX(-300px) scale(0.9) translateZ(0);
    /* Viac roztiahnuté */
}

.carousel-item.next {
    transform: translateX(300px) scale(0.9) translateZ(0);

}

/* Ďalšie slidy v pozadí */
.carousel-item.far-prev {
    transform: translateX(-550px) scale(0.75) translateZ(-150px);

    opacity: 0.4;
}

.carousel-item.far-next {
    transform: translateX(550px) scale(0.75) translateZ(-150px);
    /* Viac roztiahnuté */
    opacity: 0.4;
}

/* Slider mockup - rádius riadi samotný PNG obrázok telefónu */
.phone-mockup {
    position: relative;
    width: 100%;
    border-radius: 0;
    background: transparent;
}

.phone-svg {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Obsah displeja – rádius musí byť menší ako rádius PNG rámu */
.screen-content {
    position: absolute;
    top: 1.5%;
    left: 3%;
    width: 94%;
    height: 97%;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.screen-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigácia */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: var(--color-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 5%;
}

.carousel-nav.next {
    right: 5%;
}

@media (max-width: 1200px) {
    .carousel-item.prev {
        transform: translateX(-180px) scale(0.9) translateZ(0);
    }

    .carousel-item.next {
        transform: translateX(180px) scale(0.9) translateZ(0);
    }
}

@media (max-width: 768px) {
    .carousel-container {
        height: 600px;
    }

    .carousel-item {
        width: 260px;
    }

    .carousel-item.prev {
        transform: translateX(-140px) scale(0.85) translateZ(0);
    }

    .carousel-item.next {
        transform: translateX(140px) scale(0.85) translateZ(0);
    }

    .carousel-item.active {
        transform: scale(1.1) translateZ(50px);
    }

    .carousel-item.far-prev,
    .carousel-item.far-next {
        display: none;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
        top: auto;
        bottom: -70px;
    }

    .carousel-nav.prev {
        left: 30%;
    }

    .carousel-nav.next {
        right: 30%;
    }
}

.footer-logo {
    height: 35px;
    width: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 28px;
    }
}

/* Firemny Slider (Pro firmy) */
.firemny-slider-wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 5;
    order: 2;
}

@media (min-width: 1024px) {
    .firemny-slider-wrap {
        height: 100vh;
        position: absolute;
        right: 0;
        top: 0;
        width: 45vw;
        display: flex;
        align-items: center;
        overflow: hidden;
    }
}

.firemny-slider-blob {
    width: 100%;
    height: 80vh;
    background-color: #1a1a1a;
    border-radius: 50% 0 0 50% / 50% 0 0 50%;
    overflow: hidden;
    position: relative;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1440px) {
    .firemny-slider-blob {
        height: 90vh;
    }
}

.firemny-slider-blob .slider-track {
    width: 100%;
    height: 100%;
    display: flex;
}

.firemny-slider-blob .slider-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1023px) {
    .firemny-slider-wrap {
        margin-top: 40px;
    }

    .firemny-slider-blob {
        height: 400px;
        border-radius: 100px 0 0 100px;
    }
}

@media (max-width: 768px) {
    .firemny-slider-blob {
        height: 300px;
        border-radius: 40px;
    }
}

/* Optimalizácia pre 24" monitory a väčšie obrazovky */
@media (min-width: 1900px) {
    .hero-subtitle {
        font-size: 3.8rem;
    }

    .qr-label {
        font-size: 2.8rem;
    }

    .domain-prefix {
        font-size: 4.8rem;
    }

    .typewriter-text {
        font-size: 4.8rem;
    }

    .phone-wrapper {
        max-width: 580px;
    }

    .target-list {
        font-size: 1.5rem;
    }

    .price-main {
        font-size: 2.5rem;
    }

    /* Skrytie rušivých dekorácií na veľkej ploche */
    .deco-magic-1,
    .deco-x-1 {
        display: none;
    }
}