/* Fix: odstránenie outline a box-shadow na spodnom bare pre mobil */
.bottom-bar a:focus {
    outline: none !important;
    box-shadow: none !important;
}
/* ╔════════════════════════════════════════════════════════════════════════╗
   ║           NABYTOK v2.2 - MODERN VIBRANT DESIGN                         ║
   ║              Professional CSS with Gradients & Animations              ║
   ╚════════════════════════════════════════════════════════════════════════╝ */

/* ═══════════════════════════════════════════════════════════════════════════
   VARIABLES & DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* PRIMARY COLOR PALETTE */
    --primary-dark: #4e2e0e;
    --primary: #8d6748;
    --primary-light: #bfa074;
    --primary-bright: #e2c799;

    /* SECONDARY & ACCENTS */
    --secondary: #bfa074;
    --secondary-light: #e2c799;
    --accent-cyan: #a67c52;
    --accent-purple: #8d6748;
    --accent-orange: #e2c799;

    /* STATUS COLORS */
    --success: #7c6f57;
    --warning: #e2c799;
    --danger: #a0522d;
    --info: #bfa074;

    /* NEUTRAL PALETTE */
    --white: #f9f6f2;
    --light-bg: #f5eee6;
    --light-gray: #e2c799;
    --medium-gray: #bfa074;
    --dark-gray: #8d6748;
    --darker-gray: #4e2e0e;
    --text-dark: #3e2c19;

    /* GRADIENTS */
    --gradient-primary: linear-gradient(135deg, #8d6748 0%, #e2c799 100%);
    --gradient-secondary: linear-gradient(135deg, #bfa074 0%, #e2c799 100%);
    --gradient-warm: linear-gradient(135deg, #e2c799 0%, #8d6748 100%);
    --gradient-dark: linear-gradient(135deg, #4e2e0e 0%, #8d6748 100%);
    --gradient-hero: linear-gradient(135deg, rgba(141, 103, 72, 0.85) 0%, rgba(226, 199, 153, 0.85) 100%);
    
    /* SHADOWS */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(156, 39, 176, 0.35);
    
    /* SPACING */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    
    /* TRANSITIONS */
    --transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* BORDER RADIUS */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESET & BASE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Odstránenie mobilného overlay s 'V ÚDRŽBE' */
@media (max-width: 767px) {
  body::before {
    content: '' !important;
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: var(--gradient-dark);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
    gap: 40px;
}

.header .logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.header .logo:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 12px rgba(159, 93, 214, 0.3);
}

.header nav {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: flex-end;
}

.header nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition-fast);
    padding: 8px 0;
}

.header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--secondary));
    transition: width 0.3s ease;
}

.header nav a:hover::after {
    width: 100%;
}

.header nav a:hover {
    color: var(--accent-cyan);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hamburger.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-cyan);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: var(--accent-cyan);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
    background: var(--accent-cyan);
}

/* Mobile Navigation Overlay */
.nav-overlay {
    display: none;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    pointer-events: auto;
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION - MAIN BANNER
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(60, 60, 60, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(40, 40, 40, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.6) 0%, rgba(20, 20, 20, 0.7) 50%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 40px;
    animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-badge {
    display: inline-block;
    background: rgba(156, 39, 176, 0.18);
    color: var(--accent-purple);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(156, 39, 176, 0.35);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    word-spacing: 2px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.5;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATISTICS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.stats-section {
    padding: 80px 40px;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.stat-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.stat-box:hover::before {
    opacity: 0.05;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 14px;
    color: var(--dark-gray);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BENEFITS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.benefits-section {
    padding: 80px 40px;
    background: var(--white);
}

.benefits-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
}

.benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(33, 150, 243, 0.1) 100%);
    border-radius: var(--radius-xl);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(-5deg);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCTS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.products-section {
    padding: 80px 40px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 500px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--light-gray);
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-lg);
}

.btn-view:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.product-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(0, 188, 212, 0.15));
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    width: fit-content;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
    margin-top: auto;
}

.product-rating {
    font-size: 14px;
    color: var(--warning);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(79, 43, 116, 0.05), rgba(156, 39, 176, 0.05));
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

.cta-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 100%);
    border-radius: var(--radius-xl);
    margin-top: 60px;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.cta-section .btn:hover {
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTIONS & CONTAINERS
   ═══════════════════════════════════════════════════════════════════════════ */

.section {
    padding: 60px 40px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-dark);
}

h1 { font-size: 44px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
    margin-bottom: 16px;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════════════════ */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition-fast);
    background: var(--white);
    color: var(--text-dark);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-md);
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.alert.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border-left: 4px solid #4CAF50;
}

.alert.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border-left: 4px solid #F44336;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

.contact-form {
    max-width: 100%;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-gray) 100%);
    padding: 28px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    border-left: 5px solid var(--primary);
    transition: var(--transition);
}

.contact-info-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-info-box h3 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.contact-info-box p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-info-box strong {
    color: var(--text-dark);
}

.contact-info-box a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-info-box a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════════════════════════════ */

.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--secondary);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 700;
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT FILTERING
   ═══════════════════════════════════════════════════════════════════════════ */

.filter-container {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--medium-gray);
    background: var(--white);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.sort-select {
    padding: 10px 16px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-size: 14px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.sort-select:hover,
.sort-select:focus {
    border-color: var(--secondary);
    outline: none;
}

/* NEW FILTER SECTION STYLES */
.filter-section {
    background: linear-gradient(135deg, rgba(79, 43, 116, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    border: 2px solid rgba(79, 43, 116, 0.15);
    box-shadow: var(--shadow-sm);
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid var(--medium-gray);
    background: var(--white);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-select:hover {
    border-color: var(--primary);
    background: var(--light-bg);
}

.filter-select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.btn-filter {
    padding: 12px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    align-self: flex-end;
    box-shadow: var(--shadow-md);
}

.btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #8d6748 0%, #bfa074 100%);
}

.btn-filter:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* Responsive filter layout */
@media (max-width: 768px) {
    .filter-section {
        padding: 20px 16px;
    }
    
    .filter-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .btn-filter {
        width: 100%;
        align-self: stretch;
    }
}



/* Ztmavená sekcia 'máte otázky' (PC) */
.cta-box {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    background: linear-gradient(135deg, #7a5a36 0%, #bfa074 100%);
    color: #fffaf6;
    padding: 60px 40px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(141, 103, 72, 0.18);
    text-align: center;
    border: 2px solid #8d6748;
}
/* CTA sekcia: biela farba pre hlavné texty a tlačidlo */
.cta-box h2 {
    color: #fff !important;
    margin-bottom: 16px;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(78,46,14,0.13);
}
.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 28px;
    opacity: 1;
    line-height: 1.6;
    color: #fff !important;
}
.cta-box .btn {
    background: #fff !important;
    color: #8d6748 !important;
    font-weight: 900;
    padding: 16px 36px;
    font-size: 1.08rem;
    border: 2px solid #bfa074;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(141,103,72,0.10);
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.5px;
}
.cta-box .btn:hover {
    background: #bfa074;
    color: #8d6748;
    transform: translateY(-2px);
}

.cta-box h2 {
    color: var(--accent-cyan);
    margin-bottom: 16px;
    font-size: 2rem;
    font-weight: 800;
}

.cta-box p {
    font-size: 1.05rem;
    margin-bottom: 28px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-box .btn {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 700;
    padding: 14px 32px;
    font-size: 1rem;
}

.cta-box .btn:hover {
    background: var(--accent-cyan);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHY CHOOSE US SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.why-us-section {
    background: var(--light-bg);
    padding: 60px 40px;
}

.why-us-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 800;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    width: 100%;
}

.why-us-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--secondary);
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-us-icon {
    font-size: 3rem;
    margin: 0 auto 18px;
    display: inline-flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent-brown, #8d6748));
    color: #fff;
    box-shadow: 0 10px 30px rgba(124, 77, 255, 0.16);
    line-height: 1;
    font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Segoe UI Symbol', sans-serif;
}

.why-us-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 700;
}

.why-us-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CART PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

.cart-container {
    max-width: 800px;
    margin: 0 auto;
}

.cart-items {
    margin-bottom: 32px;
}

.cart-item {
    background: var(--white);
    border: 1px solid var(--light-gray);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: var(--transition-fast);
}

.cart-item:hover {
    box-shadow: var(--shadow-sm);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.cart-item-price {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-summary {
    background: var(--light-bg);
    padding: 28px;
    border-radius: var(--radius-lg);
    max-width: 500px;
    margin-left: auto;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--medium-gray);
}

.cart-summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    margin-top: 16px;
    padding-top: 16px;
}

.checkout-form {
    max-width: 600px;
    margin: 40px auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 60px 40px 20px;
    text-align: center;
}

footer h3 {
    color: var(--white);
    margin-bottom: 20px;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

footer a:hover {
    color: var(--accent-cyan);
}

footer p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 16px 20px;
        gap: 16px;
    }
    
    .header nav {
        gap: 16px;
        font-size: 12px;
    }
    
    .hero {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 16px;
    }
    
    .header nav {
        gap: 12px;
        flex-direction: column;
        width: 100%;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 40px 20px;
    }
    
    .container {
        padding: 0 16px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS & TRANSITIONS
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.card-link {
    text-decoration: none;
    color: inherit;
}
/* ═══════════════════════════════════════════════════════════════════════════
   EMPTY STATE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

.empty-cart {
    text-align: center;
    padding: 60px 40px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
}

.empty-cart h2 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1.8rem;
}

.empty-cart p {
    color: var(--dark-gray);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.empty-cart .btn {
    display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MODERN HOMEPAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero Modern */
.hero-modern {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e5030 0%, #2d6844 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 2;
}

.hero-content-modern {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge-modern {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title-modern {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-highlight {
    background: linear-gradient(120deg, #4CAF50, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text-modern {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons-modern {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* odstránené farebné prepisy pre .cta-box, aby všetky tri texty boli biele */

.btn-outline-modern {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-stats-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item {
    text-align: center;
}

.stat-number-hero {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.stat-label-hero {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Categories Modern */
.categories-modern {
    padding: 100px 40px;
    background: #f8f9fa;
}

.container-modern {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-header-modern p {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.categories-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.category-card-modern {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card-modern:hover::before {
    transform: scaleX(1);
}

.category-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.category-icon-modern {
    font-size: 3rem;
    margin-bottom: 16px;
}

.category-name-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.category-arrow-modern {
    font-size: 1.5rem;
    color: var(--secondary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.category-card-modern:hover .category-arrow-modern {
    opacity: 1;
    transform: translateX(0);
}

/* Featured Products Modern */
.featured-products-modern {
    padding: 100px 40px;
    background: white;
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary);
}

.product-image-container-modern {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: #f5f5f5;
    overflow: hidden;
}

.product-image-container-modern img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-modern:hover .product-image-container-modern img {
    transform: scale(1.05);
}

.product-placeholder-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.product-placeholder-modern span {
    font-size: 3rem;
    margin-bottom: 8px;
}

.product-placeholder-modern p {
    color: #999;
    font-size: 0.9rem;
}

.product-badge-modern {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--secondary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge-discount {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #FF5252 0%, #F44336 100%);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(244, 67, 54, 0.6);
    }
}

.product-details-modern {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category-modern {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-title-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-price-modern {
    margin-top: auto;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.product-cta-modern {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.product-card-modern:hover .product-cta-modern {
    transform: translateX(4px);
}

.text-center-modern {
    text-align: center;
}

.btn-large-modern {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Features Modern */
.features-modern {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item-modern {
    text-align: center;
}

.feature-icon-wrapper-modern {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon-modern {
    font-size: 2.5rem;
}

.feature-item-modern h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-item-modern p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* CTA Section Modern */
.cta-section-modern {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, #2d6844 100%);
}

.cta-box-modern {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-box-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box-modern p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-buttons-modern {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white-modern {
    background: white;
    color: var(--primary);
}

.btn-white-modern:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.btn-outline-white-modern {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white-modern:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer Modern */
.footer-modern {
    background: #1a1a1a;
    color: #999;
    padding: 60px 40px 30px;
}

.footer-content-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-modern h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col-modern p {
    line-height: 1.6;
    margin: 0;
}

.footer-col-modern a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-col-modern a:hover {
    color: var(--secondary);
}

.footer-bottom-modern {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom-modern p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-text-modern {
        font-size: 1rem;
    }
    
    .hero-buttons-modern {
        flex-direction: column;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .products-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .section-header-modern h2 {
        font-size: 2rem;
    }
}
/* Product Detail - Modern Design */
.product-detail-modern { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.product-image-wrapper { position: relative; }
.product-main-image { width: 100%; height: 380px; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.15); object-fit: cover; }
.product-no-image { width: 100%; height: 380px; background: linear-gradient(135deg, #f0f0f0, #e0e0e0); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #999; }
.product-info-wrapper { display: flex; flex-direction: column; gap: 16px; }
.product-title { font-size: 2rem; font-weight: 900; color: #1F2937; margin-bottom: 8px; line-height: 1.2; }
.product-pricing { background: linear-gradient(135deg, #f8f9fa, #e9ecef); border: 2px solid #8d6748; padding: 14px; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.price-discount-badge { display: inline-block; background: #F44336; color: white; padding: 4px 12px; border-radius: 9999px; font-weight: 800; font-size: 0.85rem; margin-bottom: 6px; }
.price-original { text-decoration: line-through; color: #999; font-size: 1rem; margin-bottom: 4px; }
.price-final { font-size: 1.8rem; font-weight: 900; color: #F44336; margin-bottom: 4px; }
.price-final-only { font-size: 1.8rem; font-weight: 900; color: #8d6748; }
.price-savings { color: #4CAF50; font-weight: 700; font-size: 0.85rem; }
.product-specs-modern { background: white; border: 1px solid #e0e0e0; border-radius: 10px; padding: 12px; }
.spec-item { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.spec-item:last-child { border-bottom: none; }
.spec-icon { font-size: 1.2rem; flex-shrink: 0; }
.spec-item strong { display: block; color: #8d6748; font-size: 0.75rem; margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.spec-item p { margin: 0; color: #1F2937; font-size: 0.9rem; }
.product-description-modern { background: #F8FAFB; padding: 14px; border-radius: 10px; border-left: 4px solid #2196F3; }
.product-description-modern h3 { color: #8d6748; margin-bottom: 8px; font-size: 1rem; }
.product-description-modern p { line-height: 1.6; color: #1F2937; font-size: 0.9rem; }
.product-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.quantity-selector { display: flex; align-items: center; gap: 10px; }
.quantity-selector label { font-weight: 600; color: #8d6748; font-size: 0.9rem; }
.quantity-selector input { width: 70px; padding: 10px; border: 2px solid #8d6748; border-radius: 8px; font-size: 1rem; font-weight: 600; text-align: center; }
.btn-add-to-cart { background: linear-gradient(135deg, #8d6748, #bfa074); color: white; border: none; padding: 12px 28px; border-radius: 8px; cursor: pointer; font-weight: 700; font-size: 1rem; transition: all 0.3s; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-add-to-cart:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); transform: translateY(-2px); }
.product-contact-box { background: linear-gradient(135deg, #F8FAFB, #e8f0f6); border: 2px solid #8d6748; padding: 16px; border-radius: 10px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.product-contact-box h3 { margin: 0 0 8px 0; color: #8d6748; font-size: 1rem; }
.product-contact-box p { margin: 5px 0; color: #1F2937; line-height: 1.5; font-size: 0.9rem; }
.product-contact-box a { color: #8d6748; font-weight: 600; text-decoration: none; transition: all 0.15s ease; }
.product-contact-box a:hover { color: #a371dd; }
@media (max-width: 968px) {
    .product-detail-modern { grid-template-columns: 1fr; gap: 30px; }
    .product-title { font-size: 1.75rem; }
    .price-final, .price-final-only { font-size: 2rem; }
    .product-main-image { height: 300px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONZÍVNY DIZAJN - MOBILNÉ ZARIADENIA, TABLETY A PC
   ═══════════════════════════════════════════════════════════════════════════ */

/* Desktop Large (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop (1024px - 1399px) */
@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
    
    .header {
        padding: 16px 30px;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }
    
    .header {
        padding: 14px 20px;
        flex-wrap: wrap;
    }
    
    .header nav {
        gap: 20px;
    }
    
    .header nav a {
        font-size: 13px;
    }
    
    .hero {
        min-height: 520px;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }

    .hero-content {
        padding: 32px 20px;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: auto;
        max-width: none;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: auto;
        min-width: 180px;
    }
    
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        order: -1;
    }
}

/* Tablet Portrait (481px - 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 12px 16px;
        flex-direction: column;
        gap: 16px;
    }
    
    .header .logo {
        font-size: 18px;
    }
    
    .hamburger {
        display: flex;
    }
    
.header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: linear-gradient(180deg, #0a2535 0%, #8d6748 100%);
        flex-direction: column;
        gap: 0;
        padding: 80px 0 20px 0;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
        overflow-y: auto;
    }
    
    .header nav.active {
        right: 0;
    }
    
    .header nav a {
        font-size: 17px;
        padding: 18px 25px;
        background: transparent;
        border-radius: 0;
        border-left: 4px solid transparent;
        transition: all 0.3s ease;
        font-weight: 600;
        letter-spacing: 0.3px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .header nav a:hover,
    .header nav a.active {
        background: linear-gradient(90deg, rgba(0, 188, 212, 0.15), transparent);
        border-left-color: var(--accent-cyan);
        padding-left: 30px;
        color: var(--accent-cyan);
    }
    
    .header nav a::after {
        display: none;
    }
    

    /* Close button v menu */
    /* .header nav::before { content: '✕ Zavrieť'; } */
    
    .header nav::before:hover {
        color: white;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .hero {
        min-height: 450px;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .btn,
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .stats-section {
        padding: 50px 20px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-box {
        padding: 30px 20px;
    }
    
    .section {
        padding: 50px 20px;
    }
    
    .section h1,
    .section h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        padding: 16px;
    }
    
    .product-card-title {
        font-size: 16px;
    }
    
    .product-card-price {
        font-size: 20px;
    }
    
    .service-card {
        padding: 28px 20px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .cart-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .cart-item-image {
        width: 100%;
        max-width: 100%;
        height: 250px;
    }
    
    .cart-summary {
        padding: 20px;
    }
    
    .checkout-form {
        padding: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column h3 {
        font-size: 18px;
    }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    
    body {
        font-size: 14px;
    }
    
    .header {
        padding: 10px 12px;
    }
    
    .header .logo {
        font-size: 18px;
    }
    
    .header nav {
        gap: 8px;
    }
    
    .header nav a {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .hero {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 20px 16px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .btn,
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .stats-section {
        padding: 40px 16px;
    }
    
    .stat-box {
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .section {
        padding: 40px 16px;
    }
    
    .section h1,
    .section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .product-card {
        padding: 16px;
    }
    
    .product-card-title {
        font-size: 16px;
    }
    
    .product-card-price {
        font-size: 20px;
    }
    
    .service-card {
        padding: 24px 16px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .cart-item-image {
        height: 200px;
    }
    
    .cart-item-name {
        font-size: 16px;
    }
    
    .cart-item-price {
        font-size: 16px;
    }
    
    .cart-summary h3 {
        font-size: 20px;
    }
    
    .cart-summary-row {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
        padding: 10px;
    }
    
    .footer-content {
        padding: 30px 16px;
    }
    
    .footer-column h3 {
        font-size: 16px;
    }
    
    .footer-column ul li {
        font-size: 13px;
    }
    
    .product-title {
        font-size: 24px !important;
    }
    
    .price-final,
    .price-final-only {
        font-size: 24px !important;
    }
    
    .product-main-image,
    .product-no-image {
        height: 250px !important;
    }
    
    .quantity-selector {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .quantity-selector input {
        width: 100%;
    }
    
    .btn-add-to-cart {
        width: 100%;
        padding: 14px;
        font-size: 14px;
    }
    
    .product-actions {
        flex-direction: column;
        width: 100%;
    }
}

/* Extra Small Mobile (< 360px) */
@media (max-width: 359px) {
    .header .logo {
        font-size: 16px;
    }
    
    .header nav a {
        font-size: 11px;
        padding: 5px 8px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .section h1,
    .section h2 {
        font-size: 20px;
    }
    
    .product-card-title {
        font-size: 14px;
    }
    
    .product-card-price {
        font-size: 18px;
    }
}

/* Landscape Mode - Telefóny v horizontálnej orientácii */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 350px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 12px;
    }
    
    .stats-section {
        padding: 40px 20px;
    }
    
    .section {
        padding: 40px 20px;
    }
}

/* Utility Classes pre responzívne skrývanie/zobrazovanie */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

@media (max-width: 767px) {
    .mobile-only {
        display: block !important;
    }
    .desktop-only {
        display: none !important;
    }
    .mobile-flex {
        display: flex !important;
    }
    .mobile-grid {
        display: grid !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Väčšie klikateľné oblasti pre dotykové zariadenia */
    .btn,
    .btn-primary,
    .btn-secondary,
    .header nav a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Odstránenie hover efektov na touch zariadeniach */
    .product-card:hover,
    .service-card:hover,
    .stat-box:hover {
        transform: none;
    }
    
    /* Lepšie scrollovanie */
    * {
        -webkit-overflow-scrolling: touch;
    }
}


