


        :root {
            --primary-color: #F8C62B;
            --secondary-color: #113E2D;
            --black-color: #000;
            --white-color: #FFF;
            --barva-podklad: #FFF;
        }
        a { color: var(--secondary-color); }
        body {
		  font-family: "Inter", sans-serif;
		  font-optical-sizing: auto;
		  font-weight: 400;
		  font-style: normal;
		  color var(--black-color);
          
        }
        .little-text {
      		font-size: 0.7em !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--secondary-color);
            font-weight: 300;
            margin-right: 20px;
        }
        .icon-feature {
            font-size: 48px;
            margin-bottom: 20px;
        }
        .navbar {
            background-color: var(--barva-podklad);
        }
        .navbar-brand img {
            max-height: 60px;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .btn-primary:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .cart-icon {
            font-size: 1.2rem;
            color: var(--secondary-color);
            padding: 0.5rem 1rem;
            background-color: var(--primary-color);
            border-radius: 5px;
        }
        .cart-icon:hover {
            color: #000;
        }
        .navbar-nav {
            align-items: center;
        }
        @media (max-width: 991px) {
            .navbar > .container {
                justify-content: space-between;
            }
            .navbar-brand {
                order: 2;
                margin: 0 auto;
            }
            .navbar-brand img {
				max-height: 60px; /* Zmenšení loga */
			}
            .navbar-toggler {
                order: 1;
            }
            .cart-icon-mobile {
                order: 3;
            }
            .navbar-collapse {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--secondary-color);
                z-index: 1000;
            }
            .mobil-skryt { display:none; }
            .sorting-buttons {font-size:0.8em;}
            .discount-banner-new {font-size:1.2em;}
            
            .navbar-nav .nav-link {
            color: var(--white-color);
       		}
        }

        #exitPopup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 40px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0,0,0,0.8);
            z-index: 100000;
        }
        #exitPopup::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #FFF;
            z-index: -1;
        }
        .footer {
        	border-top: 2px solid var(--secondary-color);
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 3rem 0;
        }
        .footer-logo {
            max-width: 200px;
            margin-bottom: 1rem;
        }
        .footer h5 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .footer ul {
            list-style-type: none;
            padding-left: 0;
        }
        .footer ul li {
            margin-bottom: 0.5rem;
        }
        .footer ul li a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .footer ul li a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        .contact-btn {
            background-color: white;
            color: var(--secondary-color);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s, color 0.3s;
        }
        .contact-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }

  .product-image {
    width: 100%;
    height: auto;
  }
  .product-details {
    padding: 10px;
  }
  .product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }
  .star-rating {
    color: #ffc107;
  }
  .product-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .product-description {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
  }
  .product-price {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
  }
  .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
  }
  .discount {
    color: #d32f2f;
    font-weight: bold;
    font-size: 14px;
  }
  .stock-status {
    color: #4caf50;
    font-size: 12px;
    margin-bottom: 10px;
  }

		.product-card {
            border: 1px solid #e0e0e0;
            transition: box-shadow 0.3s;
            padding: 15px;
        }
        .product-card:hover {
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .product-title {
            font-size: 1rem;
            height: 2.5em;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            margin-bottom: 10px;
        }
        .product-price {
            font-size: 2rem;
            font-weight: bold;
            color: #000;
            margin-bottom: 0;
        }
        .product-old-price {
            font-size: 1rem;
            color: #999;
            text-decoration: line-through;
            margin-bottom: 5px;
        }
        .product-discount {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: #ff0000;
            color: white;
            padding: 5px 10px;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .btn-add-to-cart {
            background-color: var(--primary-color);
            border: none;
            color: white;
            padding: 10px 20px;
            font-weight: bold;
            width: 100%;
            margin-top: 10px;
        }
        .btn-add-to-cart:hover {
            background-color: var(--primary-color);
        }
        .stock-status {
            background-color: #4CAF50;
            color: white;
            padding: 3px 8px;
            font-size: 0.8rem;
            border-radius: 5px;
            display: inline-block;
            margin-top: 10px;
        }
        .product-rating {
            color: #FFD700;
            margin-bottom: 10px;
        }
        
        
        .product-price-container {
			position: relative;
			display: inline-block;
			border: 1px solid #ccc;
			padding: 5px 10px;
			margin-top: 20px;
		}
		
        .discount-banner {
			position: absolute;
			top: -20px;
			left: 0;
			right: 0;
			background-color: #e4021b;
			color: white;
			text-align: center;
			padding: 2px 0;
			font-weight: bold;
		}

		.current-price {
			font-size: 22px;
			font-weight: bold;
			color: #e4021b;
		}

		.original-price {
			text-decoration: line-through;
			color: #999;
			font-size: 16px;
			margin-left: 10px;
		}

        /* Styl pro notifikační popup */
        #notification-popup {
            position: fixed;
            bottom: 20px;
            left: 10px;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 5px;
            display: none;
            z-index: 1000;
            max-width: 285px;
            border: 1px solid var(--secondary-color);
        }
        #notification-popup img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 5px;
            margin-right: 5px;
        }
        #notification-text {
        	font-size: 0.75em;
        }

        /* Styl pro tel. objednávku popup */
        #phone-order-tab {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            z-index: 1000;
        }

        .tab-icon {
            writing-mode: vertical-rl;
            text-orientation: mixed;
            transform: rotate(360deg);
            padding: 20px 10px;
            cursor: pointer;
            background-color: #003366;
            color: white;
        }

        .tab-icon i {
            color: var(--primary-color);
            font-size: 24px;
            margin-bottom: 10px;
        }

        .tab-content {
            position: absolute;
            left: 100%;
            top: 50%;
            transform: translateY(-50%);
            padding: 20px;
            background-color: white;
            color: #333;
            width: 400px;
            box-shadow: 2px 0 5px rgba(0,0,0,0.2);
            display: none;
        }

        #phone-order-tab:hover .tab-content {
            display: block;
        }

        #phone-number {
            width: 150px;
            padding: 5px;
            margin-top: 10px;
        }

        button {
            margin-top: 10px;
            padding: 5px 10px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            cursor: pointer;
        } 
        
        .price-tag-new {
            font-family: Arial, sans-serif;
            width: 158px;
            border: 1px solid var(--primary-color);
            background-color: white;
            position: relative;
            overflow: visible;
            border-radius: 5px;
            margin-top:-25px;
            float:right;
        }
        .price-tag-new.detail {
        	width: 100%;
        }
        
        .discount-banner-new {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            font-weight: bold;
            text-align: center;
            padding: 2px 0;
            position: absolute;
            top: -5px;
            left: 15px; /* Začíná na levém okraji price-content */
            right: -15px; /* Přesahuje 15px za pravý okraj price-content */
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            border-radius: 5px;
        }
        .discount-banner-new.detail {
        	font-size:1.2em;
        }
        
        .price-content-new {
        	line-height: 1.8em;
            padding: 10px 15px 5px; /* Odsazení obsahu */
            margin-top: 20px;
        }
        .original-price-new {
            font-size: 15px;
            font-weight: bold;
            color: var(--black-color);
            position: relative;
            display: inline-block;
        }
        .original-price-new::after {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            right: -2px;
            border-top: 3px solid var(--primary-color);
            transform: rotate(-20deg);
        }
        .original-price-new.detail {
        	font-size: 1.5em;
        	margin-top:15px;
        }
        
        .current-price-new {
            font-size: 40px;
            font-weight: bold;
            color: var(--black-color);
            margin-top: 0px;
            display: flex;
            align-items: baseline;
        }
        .current-price-new.detail {
        	font-size: 4em;
        	padding-top:20px;
        }
        
        .currency-new {
            font-size: 18px;
            margin-left: 2px;
        }
        
        .product-card.unavailable {
			opacity: 0.6; /* Mírně snížená průhlednost pro zachování čitelnosti */
			position: relative;
		}
		
		.btn-primary.detail {
			background-color: var(--secondary-color);
			border-color: var(--secondary-color);
			width: 100%;
			
		}

		.product-card.unavailable::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background-color: rgba(255, 255, 255, 0.2); /* Bílý překryv pro zašednutí */
			z-index: 1;
		}

		.product-card.unavailable::after {
			content: "Vyprodáno";
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%) rotate(-45deg);
			background-color: var(--secondary-color);
			color: white;
			padding: 5px 10px;
			font-weight: bold;
			font-size: 22px;
			white-space: nowrap;
			z-index: 2;
			border-radius: 5px;
		}

		.product-card.unavailable .stock-status {
			color: #d32f2f;
		}

		.product-card.unavailable a {
			position: relative;
			z-index: 2; /* Zajistí, že odkazy jsou nad překryvem a textem "Vyprodáno" */
		}
		
	    .image-container {
            position: relative;
            min-height: 100px;
        }
        .image-container img {
            display: none;
        }
        .spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--secondary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
        #fullscreen-viewer {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 9999;
        }
        #fullscreen-image {
            max-width: 90%;
            max-height: 90%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        #close-viewer {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }
        .fullscreen-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 30px;
            cursor: pointer;
            padding: 15px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 5px;
        }
        #prev-image {
            left: 20px;
        }
        #next-image {
            right: 20px;
        }
        
		.price-container {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			width: 100%;
		}

		.price-tag-new.detail {
			width: 100%;
			margin-top: 0;
			float: none;
		}

		.price-content-new {
			width: 100%;
		}

		.availability-info {
			width: 100%;
			margin-top: 10px;
		}

		.shipping-info, .return-info {
			width: 100%;
		}

		.btn-primary.detail {
			margin-top: 10px;
		}
		

.alert-christmas {
    background: linear-gradient(135deg, #165B33 0%, #0F3D22 100%);
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.4);
    animation: christmasPulse 2s ease-in-out infinite;
}

.christmas-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.tree-icon {
    font-size: 1.8em;
    animation: treeSwing 2s ease-in-out infinite;
}

.christmas-text {
    text-align: center;
    flex: 1;
}

.christmas-title {
    color: #FFD700;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: titleGlow 1.5s ease-in-out infinite;
}

.christmas-subtitle {
    color: #FFFFFF;
    font-size: 0.85em;
    font-weight: 500;
}

@keyframes christmasPulse {
    0%, 100% {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.6);
    }
}

@keyframes treeSwing {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.8);
    }
}

/* Responsivní úpravy */
@media (max-width: 768px) {
    .christmas-title {
        font-size: 0.9em;
        letter-spacing: 0.5px;
    }
    
    .christmas-subtitle {
        font-size: 0.75em;
    }
    
    .tree-icon {
        font-size: 1.5em;
    }
    
    .christmas-content {
        gap: 10px;
    }
}

.alert-viewers {
    background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
    border: 2px solid #FF8A65;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(255, 87, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.alert-viewers::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

.viewers-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.viewers-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.viewers-icon i {
    color: #FFFFFF;
    font-size: 1.3em;
    animation: eyeBlink 3s infinite;
}

.pulse-dot {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: pulse 2s infinite;
}

.viewers-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.viewers-count {
    color: #FFFFFF;
    font-size: 0.9em;
    font-weight: bold;
    line-height: 1;
}

.viewers-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75em;
    line-height: 1.1;
}

.viewers-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4CAF50;
    animation: blink 1.5s infinite;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.8);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes blink {
    0%, 100% {
        background-color: #4CAF50;
        opacity: 1;
    }
    50% {
        background-color: #8BC34A;
        opacity: 0.7;
    }
}

@keyframes eyeBlink {
    0%, 90%, 100% {
        transform: scaleY(1);
    }
    95% {
        transform: scaleY(0.1);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsivní úpravy */
@media (max-width: 768px) {
    .viewers-count {
        font-size: 1em;
    }
    
    .viewers-label {
        font-size: 0.8em;
    }
    
    .viewers-icon {
        width: 35px;
        height: 35px;
    }
    
    .viewers-icon i {
        font-size: 1.1em;
    }
    
    .status-dot {
        width: 10px;
        height: 10px;
    }
}


.alert-deadline {
    background: var(--secondary-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.deadline-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.deadline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.deadline-icon i {
    color: #FFFFFF;
    font-size: 1em;
    animation: iconPulse 2s ease-in-out infinite;
}

.deadline-text {
    flex: 1;
}

.deadline-title {
    color: #FFFFFF;
    font-size: 0.75em;
    font-weight: bold;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deadline-options {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
    flex-wrap: wrap;
}

.deadline-option {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.deadline-date {
    color: #FFD700;
    font-weight: bold;
    font-size: 0.7em;
}

.deadline-method {
    color: #FFFFFF;
    font-size: 0.65em;
}

.deadline-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
}

.deadline-bonus {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.75em;
    display: flex;
    align-items: center;
    padding-top: 3px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsivní úpravy */
@media (max-width: 768px) {
    .deadline-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .deadline-icon {
        width: 28px;
        height: 28px;
    }
    
    .deadline-icon i {
        font-size: 0.9em;
    }
    
    .deadline-title {
        font-size: 0.8em;
    }
    
    .deadline-options {
        justify-content: center;
    }
    
    .deadline-option {
        padding: 2px 6px;
    }
    
    .deadline-date {
        font-size: 0.75em;
    }
    
    .deadline-method {
        font-size: 0.7em;
    }
    
    .deadline-bonus {
        font-size: 0.7em;
        justify-content: center;
    }
    
    .deadline-separator {
        display: none;
    }
}
