


        :root {
            --primary-color: #FF5A00;
            --secondary-color: #003366;
            --black-color: #000;
            --orange-color: #FF5A00;
        }
        a { color: var(--primary-color); }
        body {
		  font-family: "Inter", sans-serif;
		  font-optical-sizing: auto;
		  font-weight: 400;
		  font-style: normal;
          
        }
        .little-text {
      		font-size: 0.7em !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 300;
            margin-right: 20px;
        }
        .icon-feature {
            font-size: 48px;
            margin-bottom: 20px;
        }
        .navbar {
            background-color: var(--secondary-color);
        }
        .navbar-brand img {
            max-height: 50px;
        }
        .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: white;
            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-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;}
        }

        #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 {
            background-color: var(--secondary-color);
            color: var(--orange-color);
            padding: 3rem 0;
        }
        .footer-logo {
            max-width: 100%;
            margin-bottom: 1rem;
        }
        .footer h5 {
            color: var(--primary-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(--orange-color);
            text-decoration: none;
        }
        .footer ul li a:hover {
            color: var(--primary-color);
        }
        .contact-btn {
            background-color: var(--orange-color);
            color: var(--secondary-color);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s, color 0.3s;
            text-decoration: none;
        }
        .contact-btn:hover {
            background-color: var(--primary-color);
            color: var(--orange-color);
        }

  .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: var(--orange-color);
            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(--primary-color);
        }
        #notification-popup img {
            width: 80px;
            height: 80px;
            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: white;
            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(--orange-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(--primary-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;
		}

       /* ===== IZOLOVANÉ STYLY PRO ŽELEZNIČNÍ TABULI - VAŠE FINÁLNÍ VERZE ===== */
        .rw-railway-menu {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border: 2px solid #07689F;
            border-radius: 6px;
            padding: 6px 12px;
            font-family: 'Courier New', monospace;
            color: #000;
            min-width: 480px;
            height: 45px;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 0 10px rgba(7, 104, 159, 0.3),
                inset 0 0 8px rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 50px;
        }
        
        .rw-railway-menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #07689F, transparent);
            animation: rw-scan 4s linear infinite;
        }
        
        .rw-departure-item {
            display: flex;
            align-items: center;
            font-size: 13px;
            font-weight: 600;
            margin: 0 8px;
            position: relative;
            height: 100%;
        }
        
        .rw-departure-item:hover {
            transform: scale(1.05);
        }
        
        .rw-departure-number {
            background: #07689F;
            color: white;
            padding: 2px 6px;
            border-radius: 3px;
            font-size: 10px;
            font-weight: bold;
            min-width: 30px;
            text-align: center;
            margin-right: 8px;
        }
        
        .rw-departure-text {
            font-size: 12px;
            letter-spacing: 0.5px;
            white-space: nowrap;
            font-family: 'Courier New', monospace;
            font-weight: bold;
            position: relative;
            overflow: hidden;
            height: 16px;
            display: flex;
            align-items: center;
            transition: opacity 0.3s ease;
        }
        
        .rw-letter {
            display: inline-block;
            position: relative;
            width: 8px;
            height: 16px;
            overflow: hidden;
            vertical-align: top;
            text-align: center;
        }
        
        .rw-letter-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: none;
        }
        
        .rw-letter.rw-rolling .rw-letter-content {
            animation: rw-rollLetter 0.4s ease-in-out forwards;
        }
        
        @keyframes rw-rollLetter {
            0% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(-16px); }
        }
        
        .rw-status-light {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #FF7E67;
            animation: rw-pulse 2s infinite;
            margin-left: 8px;
        }
        
        .rw-time-display {
            position: absolute;
            top: 10px;
            right: 16px;
            font-size: 8px;
            color: #07689F;
            background: rgba(255, 255, 255, 0.8);
            padding: 2px 4px;
            border-radius: 2px;
            border: 1px solid #07689F;
        }
        
        @keyframes rw-pulse {
            0%, 100% {
                opacity: 1;
                box-shadow: 0 0 5px #FF7E67;
            }
            50% {
                opacity: 0.7;
                box-shadow: 0 0 10px #FF7E67;
            }
        }
        
        @keyframes rw-scan {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }
        
        /* Responzivní úpravy pouze pro tabuli */
        @media (max-width: 991px) {
            .rw-railway-menu {
                min-width: 280px;
                height: 40px;
                padding: 4px 10px;
            }
            
            .rw-departure-item {
                font-size: 11px;
                margin: 0 6px;
            }
            
            .rw-departure-text {
                font-size: 11px;
            }
            
            .rw-departure-number {
                padding: 2px 4px;
                font-size: 9px;
                min-width: 25px;
                margin-right: 6px;
            }
        }
        
        @media (max-width: 576px) {
            .rw-railway-menu {
                min-width: 220px;
                height: 35px;
                padding: 3px 8px;
            }
            
            .rw-departure-item {
                margin: 0 4px;
            }
            
            .rw-departure-text {
                font-size: 10px;
            }
            
            .rw-departure-number {
                padding: 1px 3px;
                font-size: 8px;
                min-width: 20px;
                margin-right: 4px;
            }
            
            .rw-status-light {
                width: 4px;
                height: 4px;
                margin-left: 4px;
            }
        }
        
        
  /* Přizpůsobení alertů podle barev e-shopu */

/* Alert warning - primární barva */
.alert-warning {
    background-color: rgba(7, 104, 159, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.alert-warning .alert-heading {
    color: var(--primary-color);
}

/* Alert info - sekundární barva */
.alert-info {
    background-color: rgba(250, 250, 250, 0.8);
    border-color: #ddd;
    color: #666;
}

.alert-info .alert-heading {
    color: #666;
}

/* Alert success - oranžová barva jako pozitivní */
.alert-success {
    background-color: rgba(255, 126, 103, 0.1);
    border-color: var(--orange-color);
    color: var(--orange-color);
}

.alert-success .alert-heading {
    color: var(--orange-color);
}

/* Alert danger - černá barva pro chyby/problémy */
.alert-danger {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: var(--black-color);
    color: var(--black-color);
}

.alert-danger .alert-heading {
    color: var(--black-color);
}

/* Alert primary - primární barva jako výchozí */
.alert-primary {
    background-color: rgba(7, 104, 159, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.alert-primary .alert-heading {
    color: var(--primary-color);
}

/* Alert secondary - sekundární barva */
.alert-secondary {
    background-color: var(--secondary-color);
    border-color: #ddd;
    color: #666;
}

.alert-secondary .alert-heading {
    color: #666;
}

/* Kompaktní varianta alertu - poloviční odsazení a velikost textu */
.alert-compact {
    padding: 0.375rem 0.75rem; /* Poloviční padding než standardní Bootstrap alert */
    font-size: 0.875rem; /* 14px místo 16px */
    line-height: 1.2;
    margin-bottom: 0.5rem; /* Menší spodní margin */
}

.alert-compact .alert-heading {
    font-size: 1rem; /* Menší nadpis */
    margin-bottom: 0.25rem;
}

.alert-compact i {
    font-size: 0.875rem; /* Menší ikony */
}

/* Kombinace kompaktní + barvy */
.alert-warning.alert-compact {
    background-color: rgba(7, 104, 159, 0.08);
}

.alert-info.alert-compact {
    background-color: rgba(250, 250, 250, 0.6);
}

.alert-success.alert-compact {
    background-color: rgba(255, 126, 103, 0.08);
}

.alert-danger.alert-compact {
    background-color: rgba(0, 0, 0, 0.03);
}

/* Extra kompaktní varianta pro ještě menší prostor */
.alert-xs {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem; /* 12px */
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.alert-xs .alert-heading {
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}

.alert-xs i {
    font-size: 0.75rem;
}      
        
.bestseller-day-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    pointer-events: none;
    animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.comic-bubble {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), #0a7bb3);
    border: 4px solid #fff;
    border-radius: 20px;
    padding: 8px 12px;
    box-shadow: 
        0 6px 20px rgba(7, 104, 159, 0.4),
        0 0 0 2px var(--primary-color),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    min-width: 80px;
    text-align: center;
    transform: rotate(-5deg);
    animation: floatBounce 3s ease-in-out infinite;
}

.comic-bubble::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.25) 2.5px, transparent 2.5px),
        radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.8;
    animation: sparkleMove 4s linear infinite;
}

.bubble-tail {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(7, 104, 159, 0.3));
}

.bubble-tail::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -6px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #fff;
}

.bestseller-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.bestseller-icon {
    font-size: 1.6rem;
    color: var(--orange-color);
    margin-bottom: 2px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
    animation: trophy-shine 2s ease-in-out infinite alternate;
}

.bestseller-text {
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.bestseller-title {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: -2px;
}

.bestseller-position {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--orange-color);
    text-shadow: 
        1px 1px 0 #fff,
        2px 2px 0 rgba(0, 0, 0, 0.3);
    margin-bottom: -2px;
}

.bestseller-date {
    font-size: 0.6rem;
    font-weight: 700;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

@keyframes popIn {
    0% {
        transform: scale(0) rotate(-5deg);
        opacity: 0;
    }
    70% {
        transform: scale(1.1) rotate(-5deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(-5deg);
        opacity: 1;
    }
}

@keyframes floatBounce {
    0%, 100% {
        transform: rotate(-5deg) translateY(0px);
    }
    25% {
        transform: rotate(-3deg) translateY(-3px);
    }
    50% {
        transform: rotate(-5deg) translateY(-1px);
    }
    75% {
        transform: rotate(-7deg) translateY(-2px);
    }
}

@keyframes trophy-shine {
    0% {
        filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
    }
    100% {
        filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 8px rgba(255, 126, 103, 0.6));
    }
}

@keyframes sparkleMove {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    100% {
        background-position: 100% 100%, -100% -100%, 50% -50%, -50% 50%;
    }
}

/* Responzivní design */
@media (max-width: 768px) {
    .bestseller-day-overlay {
        top: 8px;
        right: 8px;
    }
    
    .comic-bubble {
        padding: 6px 10px;
        min-width: 70px;
        border-radius: 15px;
    }
    
    .bestseller-icon {
        font-size: 1.3rem;
    }
    
    .bestseller-title {
        font-size: 0.6rem;
    }
    
    .bestseller-position {
        font-size: 0.9rem;
    }
    
    .bestseller-date {
        font-size: 0.55rem;
    }
}

/* Zajistit, že carousel kontejner má position: relative */
.carousel-item,
.image-container {
    position: relative;
}





/* Speciální nabídka - Comic burst style */
.special-offer-comic-alert {
    margin: 20px 0;
    position: relative;
}

.comic-burst {
    position: relative;
    background: linear-gradient(45deg, var(--orange-color), #ff9a85);
    border: 4px solid #fff;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 
        0 8px 25px rgba(255, 126, 103, 0.4),
        0 0 0 3px var(--orange-color),
        inset 0 3px 0 rgba(255, 255, 255, 0.3);
    animation: urgentPulse 2s ease-in-out infinite;
    transform: rotate(-3deg);
}

.burst-content {
    text-align: center;
    color: #fff;
    z-index: 2;
}

.alert-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    animation: fireFlicker 1.5s ease-in-out infinite alternate;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.alert-title {
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.countdown-timer {
    font-size: 1.4rem;
    font-weight: 900;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.9);
    color: var(--orange-color);
    padding: 4px 8px;
    border-radius: 8px;
    border: 2px solid #fff;
    text-shadow: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.burst-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    z-index: 1;
}

.ray {
    position: absolute;
    background: var(--orange-color);
    border-radius: 2px;
    transform-origin: center;
    opacity: 0.6;
    animation: rayRotate 4s linear infinite;
}

.ray-1 { width: 40px; height: 4px; top: 50%; left: -20px; transform: translateY(-50%) rotate(0deg); }
.ray-2 { width: 35px; height: 3px; top: 20%; right: -15px; transform: rotate(45deg); animation-delay: -0.5s; }
.ray-3 { width: 30px; height: 4px; bottom: 50%; left: 50%; transform: translate(-50%, 50%) rotate(90deg); animation-delay: -1s; }
.ray-4 { width: 35px; height: 3px; bottom: 20%; left: -15px; transform: rotate(135deg); animation-delay: -1.5s; }
.ray-5 { width: 40px; height: 4px; top: 50%; right: -20px; transform: translateY(-50%) rotate(180deg); animation-delay: -2s; }
.ray-6 { width: 35px; height: 3px; top: 20%; left: -15px; transform: rotate(225deg); animation-delay: -2.5s; }
.ray-7 { width: 30px; height: 4px; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(270deg); animation-delay: -3s; }
.ray-8 { width: 35px; height: 3px; bottom: 20%; right: -15px; transform: rotate(315deg); animation-delay: -3.5s; }

/* Zájem zákazníků - Lightning bubble */
.customer-interest-comic {
    margin: 15px 0;
}

.interest-bubble {
    background: linear-gradient(0deg, var(--primary-color), var(--secondary-color));
    border: 3px solid #fff;
    border-radius: 25px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 
        0 6px 20px rgba(7, 104, 159, 0.3),
        0 0 0 2px var(--primary-color),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    transform: rotate(1deg);
    animation: electricBuzz 3s ease-in-out infinite;
}

.interest-bubble::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle at 45% 75%, rgba(255, 255, 255, 0.35) 2.5px, transparent 2.5px);
    border-radius: 30px;
    z-index: -1;
    animation: bubbleSparkle 2s linear infinite;
}

.lightning-icon {
    font-size: 1.8rem;
    color: var(--orange-color);
    animation: lightningFlash 2s ease-in-out infinite;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.4));
}

.interest-text {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.viewers-count {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--orange-color);
    text-shadow: 
        1px 1px 0 #fff,
        2px 2px 0 rgba(0, 0, 0, 0.3);
}

/* Animace */
@keyframes urgentPulse {
    0%, 100% {
        transform: rotate(-3deg) scale(1);
        box-shadow: 
            0 8px 25px rgba(255, 126, 103, 0.4),
            0 0 0 3px var(--orange-color),
            inset 0 3px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: rotate(-3deg) scale(1.05);
        box-shadow: 
            0 12px 35px rgba(255, 126, 103, 0.6),
            0 0 0 5px var(--orange-color),
            inset 0 3px 0 rgba(255, 255, 255, 0.4);
    }
}

@keyframes fireFlicker {
    0% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    }
    100% {
        transform: scale(1.1) rotate(2deg);
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    }
}

@keyframes rayRotate {
    0% {
        opacity: 0.6;
        transform: translateY(-50%) rotate(0deg) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translateY(-50%) rotate(0deg) scale(1.2);
    }
    100% {
        opacity: 0.6;
        transform: translateY(-50%) rotate(0deg) scale(1);
    }
}

@keyframes electricBuzz {
    0%, 100% {
        transform: rotate(1deg);
    }
    25% {
        transform: rotate(-0.5deg);
    }
    50% {
        transform: rotate(1.5deg);
    }
    75% {
        transform: rotate(0deg);
    }
}

@keyframes lightningFlash {
    0%, 80%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    85%, 95% {
        opacity: 0.7;
        transform: scale(1.1);
    }
    90% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes bubbleSparkle {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%;
    }
    100% {
        background-position: 100% 100%, -100% -100%, 50% -50%;
    }
}

/* Responzivní design */
@media (max-width: 768px) {
    .comic-burst {
        width: 150px;
        height: 150px;
    }
    
    .alert-icon {
        font-size: 1.6rem;
    }
    
    .alert-title {
        font-size: 0.7rem;
    }
    
    .countdown-timer {
        font-size: 1.1rem;
        padding: 3px 6px;
    }
    
    .burst-rays {
        width: 180px;
        height: 180px;
    }
    
    .interest-bubble {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .lightning-icon {
        font-size: 1.5rem;
    }
    
    .interest-text {
        font-size: 0.8rem;
    }
    
    .viewers-count {
        font-size: 1rem;
    }
}        
        
        
         
