/**
 * Aktuálny Sendvič - Custom Styles
 * Kompletná 1:1 kópia dizajnu zo stránky v preview mode
 *
 * @package Aktualny_Sendvic
 * @version 1.0.0
 */

/* ============================================
   ZÁKLADNÉ ŠTÝLY A RESET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-glow);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CONTAINER A LAYOUT
   ============================================ */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.section-padding {
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 6rem 0;
    }
}

/* ============================================
   HEADER A NAVIGÁCIA
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(248, 113, 48, 0.1);
    border-radius: 0.5rem;
    color: var(--primary);
}

.site-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.site-description {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-menu a.btn-primary:hover {
    background: var(--primary-glow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.menu-icon {
    width: 24px;
    height: 2px;
    background: var(--foreground);
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-navigation {
    display: none;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-navigation.active {
    display: block;
    max-height: 400px;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu a {
    display: block;
    padding: 0.5rem;
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.mobile-nav-menu a:hover {
    color: var(--primary);
}

.mobile-nav-menu a.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 0.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

#domov {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 64px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        hsla(25, 95%, 53%, 0.88) 0%,
        hsla(35, 100%, 65%, 0.85) 50%,
        hsla(45, 80%, 70%, 0.82) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #fff 0%, #FFE5D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 42rem;
}

.hero-price-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    max-width: 28rem;
    overflow: hidden;
}

/* Price card background decorations */
.price-card-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
    z-index: 1;
}

.price-card-blur-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
    background: rgba(255, 165, 0, 0.2);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

.price-card-content {
    position: relative;
    z-index: 10;
}

.hero-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

/* Hero particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    animation: float 7s ease-in-out infinite;
}

/* Floating elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.floating-element {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    animation: float 6s ease-in-out infinite;
}

.floating-element.element-1 {
    top: 5rem;
    right: 5rem;
    width: 4rem;
    height: 4rem;
}

.floating-element.element-2 {
    bottom: 8rem;
    left: 5rem;
    width: 3rem;
    height: 3rem;
    animation-delay: 2s;
}

@media (max-width: 1023px) {
    .floating-element {
        display: none;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 9999px;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero quick buy */
.hero-quick-buy {
    margin-bottom: 2rem;
}

.buy-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* Hero contact */
.hero-contact {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-contact p {
    font-size: 0.875rem;
}

.email-link {
    color: var(--primary-glow);
    font-weight: 500;
    margin-left: 0.25rem;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.email-link:hover {
    color: white;
}

/* Price card components */
.price-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.price-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(255, 165, 0, 0.2);
    border-radius: 0.5rem;
}

.price-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-glow);
}

.price-label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-left: 0.75rem;
    flex: 1;
}

.price-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

.price-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.price-status {
    flex-shrink: 0;
}

.badge-success {
    background: rgba(34, 197, 94, 0.2);
    color: rgb(134, 239, 172);
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.price-amount {
    text-align: center;
    margin-bottom: 1rem;
}

.price-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.price-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.price-feature svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.price-feature svg:first-child {
    color: rgb(250, 204, 21);
}

.price-feature:last-child svg {
    color: rgb(74, 222, 128);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: currentColor;
    border-color: currentColor;
}

.btn-outline:hover {
    background: rgba(248, 113, 48, 0.1);
}

.btn-success {
    background: linear-gradient(to right, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: linear-gradient(to right, #16a34a, #15803d);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
}

/* ============================================
   CARDS A KOMPONENTY
   ============================================ */

.card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(248, 113, 48, 0.2);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-primary {
    background: rgba(248, 113, 48, 0.1);
    color: var(--primary);
    border: 1px solid rgba(248, 113, 48, 0.2);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.grid-2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   ANIMÁCIE
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes gentlePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-gentle-pulse {
    animation: gentlePulse 3s ease-in-out infinite;
}

/* ============================================
   BACKGROUND ANIMATIONS
   ============================================ */

.background-animations {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.05;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 24px;
    height: 24px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 20px;
    height: 20px;
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 16px;
    height: 16px;
    bottom: 10%;
    left: 30%;
    animation-delay: 4s;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--foreground);
    color: var(--background);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    font-size: 1.25rem;
    color: var(--background);
    margin: 0;
}

.footer-logo .tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
}

.contact-item a:hover {
    color: var(--primary);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--background);
    margin-bottom: 1.5rem;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary);
}

.footer-partners {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-partners li {
    margin-bottom: 1rem;
}

.footer-partners a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-partners strong {
    color: var(--background);
    font-weight: 500;
}

.footer-partners span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-partners a:hover strong {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 1024px) {
    .copyright {
        justify-content: flex-start;
    }
}

.heart-icon {
    color: #ef4444;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    align-items: center;
}

@media (min-width: 640px) {
    .footer-meta {
        flex-direction: row;
    }
}

.response-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.seo-keywords {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-keywords p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin: 0;
}

/* ============================================
   COOKIES POPUP & PRICE ALERT
   ============================================ */

.cookies-popup,
.price-alert {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-strong);
    max-width: 400px;
    animation: fadeInUp 0.5s ease-out;
}

.price-alert {
    bottom: auto;
    top: 5rem;
}

/* ============================================
   RESPONSIVITA
   ============================================ */

@media (max-width: 767px) {
    .section-padding {
        padding: 3rem 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   IKONY - JEDNOTNÁ VEĽKOSŤ
   ============================================ */

/* Všetky SVG ikony majú jednotnú veľkosť 16px × 16px (h-4 w-4) */
svg {
    width: 16px !important;
    height: 16px !important;
}

/* Výnimky pre dekoratívne elementy */
.hero-background svg,
.background-animations svg,
.floating-shape svg {
    width: auto !important;
    height: auto !important;
}

/* Explicitné nastavenie pre ikony v rôznych kontextoch */
.badge svg,
.btn-primary svg,
.btn-secondary svg,
.btn-outline svg,
.nav-menu svg,
.mobile-nav-menu svg,
.contact-item svg,
.hero-stat svg,
.card svg,
.feature-icon svg,
header svg,
footer svg,
section svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
}

/* Ikony v kartách a boxoch */
.hover-lift svg,
.feature-card svg,
.trust-metric svg,
.stat-card svg,
.testimonial svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v tlačidlách */
button svg,
a svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v zoznamoch */
ul svg,
ol svg,
li svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v formulároch */
form svg,
input svg,
textarea svg,
select svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v navigácii */
nav svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v hlavičke */
.site-header svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v päte */
.site-footer svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v sekcii hero */
#domov svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v sekcii features */
#o-domene svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v sekcii trust signals */
#vyhody svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v sekcii interactive demo */
#demo svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v sekcii premium features */
#premium svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v sekcii market dominance */
#trh svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v sekcii business opportunity */
#biznis svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v sekcii innovation hub */
#inovacie svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v sekcii competitor analysis */
#konkurencia svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v sekcii success stories */
#pribehy svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v sekcii technical specs */
#specifikacie svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v sekcii gallery */
#galeria svg {
    width: 16px !important;
    height: 16px !important;
}

/* Ikony v sekcii contact */
#kontakt svg {
    width: 16px !important;
    height: 16px !important;
}

/* ============================================
   PREMIUM FEATURES ANIMATIONS
   ============================================ */

/* Float animation for background decorations */
@keyframes float-slow {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-10px) translateX(-10px);
    }
    75% {
        transform: translateY(-30px) translateX(5px);
    }
}

.animate-float-slow {
    animation: float-slow 20s ease-in-out infinite;
}

/* Drift animation for background decorations */
@keyframes drift {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    33% {
        transform: translateX(30px) translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateX(-20px) translateY(10px) rotate(-5deg);
    }
}

.animate-drift {
    animation: drift 25s ease-in-out infinite;
}
