/**
 * GIGA SHOP - MODERNÍ DESIGN
 * Čistý, profesionální a přitažlivý e-shop
 */

/* ====== RESET & BASE ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #f7fafc;
    overflow-x: hidden;
}

a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #5a67d8;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

/* ====== TOP BAR ====== */
.top-bar {
    background: #2d3748;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 25px;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.top-bar a:hover {
    color: #fff;
}

/* ====== HEADER ====== */
.main-header {
    background: #fff;
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 32px;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.logo i {
    font-size: 36px;
    margin-right: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ====== SEARCH BAR ====== */
.search-bar {
    flex: 1;
    max-width: 600px;
}

.search-form {
    display: flex;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid transparent;
    font-size: 16px;
    outline: none;
}

.search-input:focus {
    border-color: #667eea;
}

.search-btn {
    padding: 16px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b4593 100%);
}

.search-btn i {
    font-size: 18px;
}

/* ====== HEADER ACTIONS ====== */
.header-actions {
    display: flex;
    gap: 20px;
}

.action-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    color: #2d3748;
    transition: all 0.3s ease;
}

.action-btn:hover {
    color: #667eea;
    transform: translateY(-2px);
}

.action-btn i {
    font-size: 28px;
}

.action-count {
    position: absolute;
    top: 5px;
    right: 10px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    min-width: 22px;
    text-align: center;
}

.action-label {
    font-size: 13px;
    font-weight: 600;
}

/* ====== NAVIGATION ====== */
.main-nav {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.nav-link i {
    font-size: 18px;
}

/* ====== HERO SLIDER ====== */
.hero-slider {
    position: relative;
    height: 550px;
    overflow: hidden;
    margin-bottom: 80px;
}

.slider-container {
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide.active {
    display: flex;
}

.slide-content {
    text-align: center;
    color: #fff;
    padding: 60px 40px;
    max-width: 900px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 500;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* ====== SECTIONS ====== */
.benefits-section {
    padding: 40px 0;
    background: #fff;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 32px;
    color: #fff;
}

.benefit-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: #2d3748;
}

.benefit-card p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.categories-showcase,
.products-section {
    padding: 80px 0;
}

.products-section.bg-light {
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====== CATEGORIES GRID ====== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
}

.category-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.category-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.category-icon i {
    font-size: 40px;
    color: #fff;
}

.category-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: #2d3748;
}

.category-card p {
    font-size: 14px;
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-link {
    color: #667eea;
    font-weight: 600;
    font-size: 15px;
}

.category-card:hover .category-link {
    gap: 8px;
}

/* ====== PRODUCTS GRID ====== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 25px;
    z-index: 10;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.5px;
}

.product-badge.featured {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

.product-badge.new {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.product-image {
    width: 100%;
    height: 320px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: all 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.btn-wishlist {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-wishlist:hover {
    background: #fff;
    transform: scale(1.1);
}

.btn-wishlist i {
    font-size: 20px;
    color: #f5576c;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 52px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.product-name a {
    color: #2d3748;
}

.product-name a:hover {
    color: #667eea;
}

.product-brand {
    font-size: 14px;
    color: #718096;
    margin-bottom: 12px;
    font-weight: 500;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.product-rating i {
    color: #fbbf24;
    font-size: 14px;
}

.product-rating span {
    font-size: 13px;
    color: #718096;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 18px 0;
}

.price-without-vat {
    font-size: 13px;
    color: #a0aec0;
}

.price-with-vat {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-add-to-cart {
    width: 100%;
    justify-content: center;
    font-size: 15px;
}

/* ====== FOOTER ====== */
.main-footer {
    background: #2d3748;
    color: #fff;
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3,
.footer-title {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.25rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 15px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.footer-contact i {
    color: #667eea;
    width: 22px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ====== NO PRODUCTS ====== */
.no-products {
    text-align: center;
    padding: 100px 40px;
    background: #fff;
    border-radius: 16px;
    margin: 60px 0;
}

.no-products i {
    font-size: 100px;
    color: #e2e8f0;
    display: block;
    margin-bottom: 30px;
}

.no-products h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.no-products p {
    font-size: 1.25rem;
    color: #718096;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .search-bar {
        order: 3;
        width: 100%;
        max-width: 100%;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .product-image {
        height: 240px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ====== KATEGORIE STRÁNKA ====== */
.category-page {
    padding: 40px 0;
    background: #f7fafc;
}

.category-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Levé menu - Sidebar */
.sidebar-categories {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.widget-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: #667eea;
}

.category-tree {
    list-style: none;
}

.category-item {
    margin-bottom: 8px;
}

.category-item > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #4a5568;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-item > a i {
    font-size: 16px;
    width: 20px;
    color: #667eea;
}

.category-item > a span {
    flex: 1;
}

.category-item > a .count {
    font-size: 12px;
    color: #a0aec0;
    font-weight: 400;
}

.category-item > a:hover,
.category-item.active > a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.category-item.active > a i,
.category-item > a:hover i,
.category-item.active > a .count,
.category-item > a:hover .count {
    color: #fff;
}

.subcategory-list {
    list-style: none;
    margin-top: 8px;
    margin-left: 30px;
}

.subcategory-item a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #718096;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.subcategory-item a:hover,
.subcategory-item.active a {
    background: #f7fafc;
    color: #667eea;
    padding-left: 18px;
}

.subcategory-item a .count {
    margin-left: auto;
    font-size: 11px;
    color: #a0aec0;
}

/* Filtr ceny */
.price-filter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-input {
    flex: 1;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
}

.price-input:focus {
    outline: none;
    border-color: #667eea;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    font-size: 14px;
    color: #718096;
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: #667eea;
    transition: all 0.3s ease;
}

.breadcrumbs a:hover {
    color: #5a67d8;
}

.breadcrumbs i {
    font-size: 12px;
    color: #cbd5e0;
}

.breadcrumbs span {
    color: #2d3748;
    font-weight: 600;
}

/* Hlavička kategorie */
.category-header {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.category-info {
    margin-bottom: 20px;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    font-size: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-description {
    color: #718096;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.category-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f7fafc;
}

.product-count-info {
    font-size: 14px;
    color: #718096;
}

.product-count-info strong {
    color: #667eea;
    font-weight: 700;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-controls label {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
}

.sort-select {
    padding: 10px 35px 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8"><path fill="%23667eea" d="M0 0l6 8 6-8z"/></svg>') no-repeat right 12px center;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
}

.sort-select:focus {
    outline: none;
    border-color: #667eea;
}

/* Produkty - 4 na řádek */
.products-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.product-card-modern {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.product-image-link {
    display: block;
    width: 100%;
    height: 280px;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.product-card-modern .product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: all 0.4s ease;
}

.product-card-modern:hover .product-image {
    transform: scale(1.08);
}

.product-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product-title a {
    color: #2d3748;
    transition: all 0.3s ease;
}

.product-title a:hover {
    color: #667eea;
}

.product-brand {
    font-size: 13px;
    color: #718096;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-brand i {
    color: #667eea;
}

.product-pricing {
    margin: auto 0 15px 0;
    padding: 15px;
    background: #f7fafc;
    border-radius: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-row.main-price {
    padding-top: 8px;
    border-top: 2px solid #e2e8f0;
}

.price-label {
    font-size: 12px;
    color: #718096;
    font-weight: 500;
}

.price-value {
    font-weight: 700;
}

.price-without-vat {
    font-size: 13px;
    color: #a0aec0;
}

.price-with-vat {
    font-size: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-add-cart,
.btn-outline {
    padding: 10px;
    font-size: 13px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-outline {
    background: #fff;
    border: 2px solid #667eea;
    color: #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: #fff;
}

/* Stránkování */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px 0;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #4a5568;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #fff;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #4a5568;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-number.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #fff;
}

.pagination-dots {
    display: flex;
    align-items: center;
    padding: 0 5px;
    color: #a0aec0;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .category-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-categories {
        position: relative;
        top: 0;
    }
    
    .products-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .product-actions {
        grid-template-columns: 1fr;
    }
}


/* ===================================
   DETAIL PRODUKTU
   =================================== */


.product-detail-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px 0;
    min-height: 80vh;
}

.product-detail-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin: 30px 0;
}

/* Galerie obrázků */
.product-gallery {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.main-image-wrapper {
    position: relative;
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
    margin-bottom: 20px;
    border: 2px solid #e9ecef;
}

.main-product-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.main-product-image:hover {
    transform: scale(1.05);
}

.image-zoom-hint {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.main-image-wrapper:hover .image-zoom-hint {
    opacity: 1;
}

.thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #dee2e6;
    cursor: pointer;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Informace o produktu */
.product-info-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-name-detail {
    font-size: 2.2rem;
    color: #2d3748;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-brand-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #4a5568;
}

.product-brand-detail i {
    color: #f59e0b;
}

.product-sku-stock {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.sku-info,
.stock-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.stock-info.in-stock {
    color: #10b981;
}

.stock-info.out-of-stock {
    color: #ef4444;
}

/* Cenový box */
.product-pricing-detail {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
}

.price-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.price-item.main {
    border-bottom: 2px solid white;
    padding-bottom: 15px;
}

.price-title {
    font-size: 0.95rem;
    opacity: 0.9;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
}

.price-with-vat-large {
    font-size: 2.2rem !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.vat-info {
    font-size: 0.9rem;
    opacity: 0.85;
    text-align: center;
    padding-top: 5px;
}

/* Krátký popis */
.product-short-description {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.product-short-description h3 {
    font-size: 1.2rem;
    color: #2d3748;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-short-description p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Nákupní akce */
.purchase-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-selector label {
    font-weight: 600;
    color: #2d3748;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #667eea;
    border-radius: 10px;
    overflow: hidden;
}

.qty-btn {
    background: #667eea;
    color: white;
    border: none;
    width: 40px;
    height: 45px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1.1rem;
}

.qty-btn:hover {
    background: #764ba2;
}

.qty-input {
    width: 70px;
    height: 45px;
    text-align: center;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-add-to-cart-detail {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-wishlist-detail {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Výhody */
.product-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 2px dashed #e9ecef;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    color: #4a5568;
    font-size: 0.9rem;
}

.benefit-item i {
    font-size: 1.8rem;
    color: #667eea;
}

/* Taby */
.product-tabs {
    margin: 50px 0;
}

.tabs-header {
    display: flex;
    gap: 5px;
    border-bottom: 3px solid #e9ecef;
    background: white;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: #f8f9fa;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    background: #e9ecef;
    color: #2d3748;
}

.tab-btn.active {
    background: white;
    color: #667eea;
    border-bottom: 3px solid #667eea;
}

.tabs-content {
    background: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-content-inner {
    padding: 40px;
}

.tab-content-inner h2 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.tab-content-inner p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Tabulka parametrů */
.parameters-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.parameters-table tr {
    border-bottom: 1px solid #e9ecef;
    transition: background 0.2s;
}

.parameters-table tr:hover {
    background: #f8f9fa;
}

.parameters-table td {
    padding: 15px 20px;
}

.param-name {
    font-weight: 600;
    color: #4a5568;
    width: 30%;
}

.param-value {
    color: #2d3748;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.stock-badge.in-stock {
    background: #d1fae5;
    color: #065f46;
}

.stock-badge.out-of-stock {
    background: #fee2e2;
    color: #991b1b;
}

/* No reviews */
.no-reviews {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

.no-reviews i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-reviews p {
    margin: 10px 0;
    font-size: 1.1rem;
}

/* Podobné produkty */
.similar-products {
    margin: 50px 0;
}

.similar-products .section-title {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.similar-products .section-title i {
    color: #667eea;
}

/* Responsive design */
@media (max-width: 992px) {
    .product-detail-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .product-name-detail {
        font-size: 1.8rem;
    }
    
    .price-with-vat-large {
        font-size: 1.8rem !important;
    }
    
    .product-benefits {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        border-bottom: 1px solid #e9ecef;
    }
    
    .tab-btn.active {
        border-left: 4px solid #667eea;
        border-bottom: 1px solid #e9ecef;
    }
}

@media (max-width: 768px) {
    .product-detail-page {
        padding: 20px 0;
    }
    
    .product-detail-main {
        padding: 20px;
    }
    
    .product-name-detail {
        font-size: 1.5rem;
    }
    
    .product-sku-stock {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-content-inner {
        padding: 25px 20px;
    }
    
    .parameters-table td {
        padding: 10px 15px;
    }
    
    .param-name {
        width: 40%;
        font-size: 0.9rem;
    }
}


/* ===================================
   STRÁNKA O NÁS
   =================================== */

/* ===================================
   PROFESIONÁLNÍ FOOTER DESIGN
   =================================== */
   
.footer-top {
    padding: 60px 0 40px;
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col-modern {
    color: rgba(255, 255, 255, 0.9);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    color: #667eea;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about .footer-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info .contact-item i {
    color: #667eea;
    width: 20px;
    font-size: 14px;
}

.footer-contact-info .contact-item a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info .contact-item a:hover {
    color: #fff;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-heading i {
    color: #667eea;
    font-size: 14px;
}

.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-modern li {
    margin-bottom: 10px;
}

.footer-links-modern a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links-modern a i {
    font-size: 10px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links-modern a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links-modern a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Visitor Stats Modern */
.visitor-stats-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-box-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-box-modern:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.stat-box-modern.online-stat {
    border-left: 3px solid #10b981;
}

.stat-box-modern.today-stat {
    border-left: 3px solid #3b82f6;
}

.stat-box-modern.total-stat {
    border-left: 3px solid #8b5cf6;
}

.stat-icon-modern {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.online-stat .stat-icon-modern {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.today-stat .stat-icon-modern {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.total-stat .stat-icon-modern {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.stat-content-modern {
    flex: 1;
}

.stat-value-modern {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.stat-label-modern {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-pulse {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1.3);
    }
}

.pulse-effect {
    animation: pulse-box 0.6s ease-out;
}

@keyframes pulse-box {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Footer Middle */
.footer-middle {
    background: rgba(0, 0, 0, 0.15);
    padding: 30px 0;
}

.footer-middle-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.social-section h4,
.payment-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links-modern {
    display: flex;
    gap: 10px;
}

.social-btn-modern {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-btn-modern.facebook { background: #1877f2; }
.social-btn-modern.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn-modern.youtube { background: #ff0000; }
.social-btn-modern.linkedin { background: #0077b5; }

.social-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icon {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.copyright strong {
    color: #fff;
}

.footer-dev {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-dev i.fa-heart {
    color: #ef4444;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e2e8f0;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-middle-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-box-modern {
        padding: 12px 14px;
    }
    
    .stat-value-modern {
        font-size: 18px;
    }
}



/* ===================================
   PROFESIONÁLNÍ FOOTER - NOVÝ DESIGN
   =================================== */

.pro-footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%) !important;
    color: #fff !important;
    margin-top: auto;
    padding: 0 !important;
}

.pro-footer-main {
    padding: 60px 0 40px !important;
}

.pro-footer-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 40px !important;
}

/* Brand sekce */
.pro-footer-brand {
    max-width: 350px;
}

.pro-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pro-footer-logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pro-footer-desc {
    color: #a0aec0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pro-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pro-footer-contact a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pro-footer-contact a:hover {
    color: #667eea;
}

.pro-footer-contact i {
    width: 20px;
    color: #667eea;
}

/* Odkazy */
.pro-footer-links h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.pro-footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.pro-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-footer-links li {
    margin-bottom: 12px;
}

.pro-footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.pro-footer-links a:hover {
    color: #667eea;
    transform: translateX(5px);
}

/* Soci�ln� s�t� */
.pro-footer-social h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pro-social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.pro-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.pro-social-btn.facebook { background: #1877f2; }
.pro-social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.pro-social-btn.youtube { background: #ff0000; }

.pro-social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.pro-payment-icons {
    display: flex;
    gap: 15px;
    font-size: 2rem;
    color: #4a5568;
}

.pro-payment-icons i:hover {
    color: #667eea;
}

/* ===================================
   POČÍTADLO NÁVŠTĚVNOSTI - VODOROVNĚ
   =================================== */

.pro-footer-stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    padding: 20px 0 !important;
}

.pro-stats-bar {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0 !important;
}

.pro-stat-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 15px 40px !important;
}

.pro-stat-icon {
    font-size: 1.5rem;
    opacity: 0.9;
}

.pro-stat-item.online .pro-stat-icon i {
    color: #10b981;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px #10b981; }
    50% { opacity: 0.5; text-shadow: 0 0 20px #10b981; }
}

.pro-stat-info {
    display: flex;
    flex-direction: column;
}

.pro-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.pro-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pro-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.3);
}

/* Copyright */
.pro-footer-bottom {
    background: #0a0a14;
    padding: 20px 0;
    text-align: center;
}

.pro-footer-bottom-content p {
    margin: 5px 0;
    color: #718096;
    font-size: 0.9rem;
}

.pro-footer-credit {
    font-size: 0.85rem !important;
}

.pro-footer-credit i.fa-heart {
    color: #e74c3c;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .pro-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .pro-stats-bar {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .pro-stat-item {
        padding: 12px 25px;
    }
    
    .pro-stat-divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .pro-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pro-footer-brand {
        max-width: 100%;
    }
    
    .pro-footer-logo {
        justify-content: center;
    }
    
    .pro-footer-contact {
        align-items: center;
    }
    
    .pro-footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .pro-social-icons {
        justify-content: center;
    }
    
    .pro-payment-icons {
        justify-content: center;
    }
    
    .pro-stats-bar {
        flex-direction: column;
    }
    
    .pro-stat-item {
        width: 100%;
        justify-content: center;
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .pro-stat-item:last-child {
        border-bottom: none;
    }
}

/* ===================================
   FOOTER OVERRIDE - MUS� B�T NA KONCI
   =================================== */
footer.pro-footer {
    display: block !important;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%) !important;
    color: #fff !important;
}

footer.pro-footer .pro-footer-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 40px !important;
}

footer.pro-footer .pro-stats-bar {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
}

@media (max-width: 576px) {
    footer.pro-footer .pro-stats-bar {
        flex-direction: column !important;
    }
}

/* ===================================
   FOOTER OVERRIDE - MUS� B�T NA KONCI
   =================================== */
footer.pro-footer {
    display: block !important;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%) !important;
    color: #fff !important;
}

footer.pro-footer .pro-footer-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 40px !important;
}

footer.pro-footer .pro-stats-bar {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
}

@media (max-width: 576px) {
    footer.pro-footer .pro-stats-bar {
        flex-direction: column !important;
    }
}

/* ============================================
   COOKIE CONSENT BAR
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-text i {
    font-size: 2rem;
    color: #ffc107;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text a {
    color: #ffc107;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea47a 100%);
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-settings:hover {
    background: rgba(255,255,255,0.2);
}

.cookie-btn-secondary {
    background: transparent;
    color: #999;
    border: 1px solid #666;
}

.cookie-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cookie-modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 16px 16px 0 0;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-modal-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-modal-close:hover {
    background: rgba(255,255,255,0.3);
}

.cookie-modal-body {
    padding: 25px;
}

.cookie-category {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-category-header span:first-child {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-category-header i {
    color: #667eea;
}

.cookie-category p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

.cookie-always-on {
    font-size: 0.8rem;
    color: #28a745;
    font-weight: 600;
}

/* Cookie Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cookie-switch input:checked + .cookie-slider {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 0 0 16px 16px;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
