/* ===================================
   STRÁNKA O NÁS
   =================================== */

.about-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px 0;
}

.about-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

.about-title {
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    line-height: 1.6;
}

.about-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    color: #667eea;
    opacity: 0.2;
}

/* Statistiky */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.stat-icon {
    font-size: 3.5rem;
    color: #667eea;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
}

/* Příběh */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin: 50px 0;
}

.story-content h2 {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.story-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.image-placeholder i {
    font-size: 100px;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Hodnoty */
.values-section {
    margin: 50px 0;
}

.section-title {
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.value-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Co nabízíme */
.offerings-section {
    margin: 50px 0;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.offering-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    text-align: center;
}

.offering-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.offering-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.offering-item h4 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.offering-item p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* CTA sekce */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin: 50px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ===================================
   STRÁNKA PRODUKTY (ESHOP)
   =================================== */

.products-page {
    background: #f7fafc;
    padding: 30px 0;
    min-height: 80vh;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 30px;
}

/* Sidebar produktů */
.products-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 120px;
}

.sidebar-search,
.sidebar-categories-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.sidebar-search h3,
.sidebar-categories-box h3 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-form-sidebar {
    display: flex;
    gap: 5px;
}

.search-form-sidebar .form-control {
    flex: 1;
}

.category-tree-sidebar {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item-sidebar {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.category-item-sidebar:last-child {
    border-bottom: none;
}

.category-item-sidebar a {
    display: block;
    padding: 10px 5px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
    position: relative;
}

.category-item-sidebar a:hover {
    color: #667eea;
    padding-left: 10px;
}

.category-item-sidebar.active > a {
    color: #667eea;
    font-weight: 600;
}

.category-item-sidebar a i {
    margin-right: 8px;
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}

.cat-count {
    float: right;
    color: #9ca3af;
    font-size: 0.8rem;
    font-weight: 400;
}

.category-item-sidebar.active .cat-count {
    color: #667eea;
    font-weight: 600;
}

/* Cenový filtr v sidebaru */
.sidebar-price-filter {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-price-filter h3 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-price-filter h3 i {
    color: #667eea;
}

.price-filter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-inputs input {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.price-inputs input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.price-inputs span {
    color: #9ca3af;
    font-weight: 600;
    font-size: 1rem;
}

.price-filter-form .btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.price-filter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.price-filter-form .btn i {
    font-size: 0.9rem;
}

/* Hlavní sekce produktů */
.products-main {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Grid produktů - 3 boxy na řádek */
.products-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 30px;
}

.products-info h1 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.products-count {
    color: #6b7280;
    font-size: 0.95rem;
}

.products-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-form label {
    font-weight: 600;
    color: #4a5568;
}

.no-products {
    text-align: center;
    padding: 80px 20px;
    color: #9ca3af;
}

.no-products i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.no-products h3 {
    font-size: 1.8rem;
    color: #4a5568;
    margin-bottom: 15px;
}

/* ===================================
   STRÁNKA NOVINKY
   =================================== */

.news-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px 0;
}

.news-hero {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.news-hero h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.news-hero p {
    font-size: 1.2rem;
    color: #4a5568;
}

.news-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.cat-filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    color: #4a5568;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cat-filter-btn:hover,
.cat-filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.news-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    gap: 25px;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.news-card-icon {
    font-size: 3rem;
    color: #667eea;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-content {
    flex: 1;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.news-category,
.news-date {
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-title {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.news-excerpt {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-author {
    color: #6b7280;
    font-size: 0.9rem;
}

.news-read-more {
    color: #667eea;
    font-weight: 600;
    transition: all 0.3s;
}

.news-read-more:hover {
    color: #764ba2;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin: 50px 0;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 30px auto;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
}

.newsletter-privacy {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===================================
   STRÁNKA KONTAKT
   =================================== */

.contact-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px 0;
}

.contact-hero {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-hero h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
}

.info-icon {
    font-size: 2.5rem;
    color: #667eea;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content h3 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.info-content p {
    color: #4a5568;
    line-height: 1.6;
}

.info-content a {
    color: #667eea;
}

.social-links h3 {
    color: #2d3748;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.youtube { background: #ff0000; }
.social-btn.linkedin { background: #0077b5; }

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Formulář */
.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-section h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 30px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

/* Mapa */
.map-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.map-section h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 25px;
}

.map-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.map-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
}

.map-note {
    margin-top: 15px;
    opacity: 0.9;
}

/* FAQ */
.faq-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.faq-section h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 30px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: #f7fafc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.faq-item h4 {
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* ===================================
   MODERNÍ FOOTER
   =================================== */

.footer-grid-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2.5rem;
    color: #667eea;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d3748;
}

.footer-contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    color: #4a5568;
}

.contact-item i {
    color: #667eea;
    width: 20px;
}

.footer-heading {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links-modern {
    list-style: none;
    padding: 0;
}

.footer-links-modern li {
    margin: 10px 0;
}

.footer-links-modern a {
    color: #4a5568;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-modern a:hover {
    color: #667eea;
    padding-left: 5px;
}

/* Počítadlo návštěv - moderní */
.visitor-stats-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-box-modern {
    background: linear-gradient(135deg, #f7fafc 0%, #e9ecef 100%);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.stat-box-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.stat-box-modern.online-stat {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.stat-box-modern.today-stat {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.stat-box-modern.total-stat {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.stat-icon-modern {
    font-size: 2rem;
}

.stat-value-modern {
    font-size: 1.8rem;
    font-weight: 800;
}

.stat-label-modern {
    font-size: 0.85rem;
    opacity: 0.9;
}

.stat-pulse {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.pulse-effect {
    animation: pulseEffect 0.6s ease;
}

@keyframes pulseEffect {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Footer middle */
.footer-middle {
    background: #f8f9fa;
    padding: 30px 0;
    margin-top: 50px;
}

.footer-middle-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-section h4,
.payment-section h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.social-links-modern {
    display: flex;
    gap: 12px;
}

.social-btn-modern {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.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(-5px) rotate(10deg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icon {
    font-size: 2rem;
    color: #4a5568;
    transition: all 0.3s;
}

.payment-icon:hover {
    color: #667eea;
    transform: scale(1.2);
}

/* Footer bottom */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-dev {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-section { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .offerings-grid { grid-template-columns: repeat(2, 1fr); }
    .products-layout { grid-template-columns: 250px 1fr; }
}

@media (max-width: 992px) {
    .about-hero { grid-template-columns: 1fr; }
    .about-story { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .offerings-grid { grid-template-columns: 1fr; }
    .products-layout { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid-modern { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .stats-section { grid-template-columns: 1fr; }
    .about-title { font-size: 2rem; }
    .cta-buttons { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid-modern { grid-template-columns: 1fr; }
    .footer-middle-content { flex-direction: column; gap: 30px; }
    .footer-bottom-content { flex-direction: column; gap: 15px; text-align: center; }
}


/* ===================================
   ROZBALOVAC� KATEGORIE
   =================================== */

.category-item-sidebar.has-children {
    position: relative;
}

.category-toggle {
    display: inline-block;
    width: 18px;
    cursor: pointer;
    color: #9ca3af;
    transition: all 0.2s;
    margin-right: 3px;
}

.category-toggle:hover {
    color: #667eea;
}

.category-item-sidebar.open > a .category-toggle i {
    transform: rotate(90deg);
}

.category-children {
    list-style: none;
    padding-left: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

.category-item-sidebar.open > .category-children {
    max-height: 2000px;
}

.category-children .category-item-sidebar {
    border-bottom: 1px solid #f5f5f5;
}

.category-children .category-item-sidebar a {
    padding-left: 25px;
    font-size: 0.9rem;
}

.category-children .category-children .category-item-sidebar a {
    padding-left: 45px;
    font-size: 0.85rem;
    color: #6b7280;
}

/* ===================================
   DETAIL PRODUKTU
   =================================== */

.product-detail-page {
    background: #f7fafc;
    padding: 30px 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    font-size: 0.9rem;
    color: #6b7280;
}

.breadcrumb-nav a {
    color: #667eea;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: #764ba2;
}

.breadcrumb-nav span {
    color: #2d3748;
    font-weight: 600;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 20px 0;
}

/* Obr�zky produktu */
.main-image-container {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.gallery-thumbnail {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-thumbnail:hover {
    border-color: #667eea;
    transform: scale(1.05);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Informace o produktu */
.product-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-detail-title {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-sku {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.product-price-box {
    background: #f7fafc;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.price-row-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.price-label-detail {
    font-size: 1rem;
    color: #4a5568;
}

.price-value-detail {
    font-size: 1.3rem;
    font-weight: 700;
}

.main-price-detail {
    border-top: 2px solid #e9ecef;
    margin-top: 10px;
    padding-top: 15px;
}

.price-with-vat-detail {
    color: #667eea;
    font-size: 2rem;
}

.product-availability {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
}

/* P�id�n� do ko��ku */
.product-add-section {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 45px;
    height: 50px;
    background: #f7fafc;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    color: #4a5568;
}

.qty-btn:hover {
    background: #667eea;
    color: white;
}

.qty-input {
    width: 70px;
    height: 50px;
    border: none;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-add-cart {
    flex: 1;
    height: 50px;
}

/* Rychl� info */
.product-quick-info {
    display: grid;
    gap: 15px;
    padding: 25px;
    background: #f7fafc;
    border-radius: 12px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-info-item i {
    font-size: 2rem;
    color: #667eea;
    min-width: 40px;
}

.quick-info-item strong {
    display: block;
    color: #2d3748;
    font-size: 1rem;
}

.quick-info-item span {
    display: block;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Taby produktu */
.product-tabs-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 40px 0;
    overflow: hidden;
}

.product-tabs {
    display: flex;
    border-bottom: 2px solid #e9ecef;
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5568;
    transition: all 0.3s;
}

.tab-btn:hover {
    background: #f7fafc;
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: block;
}

.product-description {
    line-height: 1.8;
    color: #4a5568;
    font-size: 1.05rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #e9ecef;
}

.specs-table th {
    text-align: left;
    padding: 15px;
    background: #f7fafc;
    font-weight: 600;
    color: #2d3748;
    width: 30%;
}

.specs-table td {
    padding: 15px;
    color: #4a5568;
}

.delivery-info h3 {
    color: #2d3748;
    margin-bottom: 15px;
    margin-top: 25px;
}

.delivery-info h3:first-child {
    margin-top: 0;
}

.delivery-info ul {
    list-style: none;
    padding: 0;
}

.delivery-info li {
    padding: 10px 0;
    color: #4a5568;
    border-bottom: 1px solid #e9ecef;
}

.related-products-section {
    margin: 50px 0;
}

/* Responsive */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-add-section {
        flex-direction: column;
    }
    
    .quantity-selector {
        justify-content: center;
    }
}



/* Aktivn� filtry */
.active-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.remove-filter {
    color: white;
    opacity: 0.8;
    transition: opacity 0.2s;
    cursor: pointer;
}

.remove-filter:hover {
    opacity: 1;
}

