/* --- ZÁKLADNÍ RESET A GLOBÁLNÍ STYLY --- */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.body-content-header h1 {
    display: none;
}

#body-content {
    padding-bottom: 0 !important;
}

.wb-fullwidth {
    width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* --- BANNER A OBRÁZEK --- */
.banner-link, .banner-container, .banner-image {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
    color: inherit;
}

.banner-image {
    object-fit: cover;
}

/* --- BOX KONTEJNER --- */
.delivery-boxes-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

/* --- SPOLEČNÉ VLASTNOSTI PRO BOXY --- */
.delivery-box1, .delivery-box2, .delivery-box3 {
    width: 100%;
    padding: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* --- SPECIFICKÉ BARVY BOXŮ --- */
.delivery-box1 { background-color: #d11c43; color: white; }
.delivery-box2 { background-color: #e49a12; color: white; }
.delivery-box3 { background-color: #e26ab0; color: #ffddf1; }

.box-title {
    font-size: 17px;
    font-weight: bold;
    margin: 0;
}

.box-detail {
    font-weight: 700;
    margin: 2px 0 0 0;
}

.doruceni-tag {
    width: 35%;
    background-color: #dba309;
    color: white;
    border-radius: 8px 0 8px 0;
    padding: 12px 4px;
    text-align: center;
}

.doruceni-title {
    font-size: 1px; 
    font-weight: 600;
    margin: 0;
}

/* --- HERO SEKCE --- */
.wb-hero-section-wrapper {
    background: linear-gradient(53deg, #f2ebff 0%, #f4e9ff 0%, #fcfcfc 49%, #f4e9ff 96%);
    padding: 40px 0 24px 0;
    max-width: 1920px;
    margin: 0 auto;
}

.wb-hero-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(400px, 30%) 1fr;
    gap: 38px;
}

.wb-static-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    text-align: left;
}

.wb-static-content h1 {
    font-size: 30px !important;
    font-family: 'Inter', sans-serif;
    color: #48216b !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    margin: 0 0 14px 0 !important;
    text-transform: initial !important;
}

.wb-static-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 24px;
}

/* --- RESPONSIVITA --- */
@media (max-width: 768px) {
    .delivery-boxes-container {
        bottom: 0;
        padding: 0;
    }

    .delivery-box1, .delivery-box2, .delivery-box3, .doruceni-tag {
        width: 100%;
        border-radius: 0;
    }

    .box-title { font-size: 16px; }
    .box-detail { font-size: 15px; }
}
			
		/* --- TLAČÍTKA A CTA --- */
.wb-btn {
    display: inline-block;
    padding: 14px 24px !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px !important;
    align-self: flex-start;
    white-space: nowrap;
    color: #7c3aed;
    border: 2px solid #7c3aed !important;
    border-radius: 12px !important;
    transition: all 0.2s ease-in-out !important;
    margin-top: 16px !important;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.wb-btn:hover {
    background-color: white !important;
    border-color: #7c3aed !important;
    color: #7c3aed !important;
    transform: translateY(-1px);
}

/* --- DROPDOWN MENU --- */
.wb-dropdown {
    position: relative;
    display: inline-block;
    align-self: flex-start;
}

.wb-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.2);
    padding: 4px;
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0) translateY(-10px);
    transform-origin: top left;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    border: 3px solid #7c3aed;
}

.wb-dropdown:hover .wb-dropdown-menu,
.wb-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1) translateY(0);
}

.wb-dropdown:hover .wb-btn {
    background-color: #7c3aed !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(124, 58, 237, 0.3);
}

.wb-dropdown-item {
    display: block;
    padding: 12px 14px;
    color: #48216b;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s ease;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
    background: transparent;
}

.wb-dropdown-item:last-child {
    margin-bottom: 0;
}

.wb-dropdown-item:hover {
    background: linear-gradient(0deg, #f1ebfc 100%, #f1e4fd 100%);
    color: #48216b !important;
}

.wb-dropdown-item::before {
    content: "→"; /* Opraveno z rozbitého kódování */
    margin-right: 8px;
    opacity: 0;
    transition: all 0.17s ease;
    display: inline-block;
}

.wb-dropdown-item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* --- CAROUSEL (PRAVÝ BLOK) --- */
.wb-carousel-container-wrapper {
    position: relative;
    width: 100%;
}

.wb-hero-carousel-container {
    position: relative;
    max-width: 100%;
    height: 73vh;
    max-height: 415px;
    overflow: hidden;
    border-radius: 12px;
}

.wb-carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.wb-carousel-item {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.wb-carousel-item a, 
.wb-carousel-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- OVLÁDACÍ PRVKY --- */
button.wb-carousel-control {
    display: none;
}

button.wb-carousel-control-doleva:focus,
button.wb-carousel-control-doprava:focus {
    outline: none;
}

/* --- POZADÍ SLIDŮ --- */
.wb-carousel-item.slide-1 { background-image: url('https://fotokniha.fra1.cdn.digitaloceanspaces.com/fotosesit/galerie/fotosesit_hero.webp'); }
.wb-carousel-item.slide-2 { background-image: url('https://fotokniha.fra1.cdn.digitaloceanspaces.com/Promo%20/den_matek_fotoobraz.webp'); }
.wb-carousel-item.slide-3 { background-image: url('https://fotokniha.fra1.cdn.digitaloceanspaces.com/Promo%20/den-matek/den_matek.webp'); }
.wb-carousel-item.slide-4 { background-image: url('https://fotokniha.fra1.cdn.digitaloceanspaces.com/html/HP/bannery/banner_fotokniha_pevna3.webp'); }



	  
	   .wb-carousel-control-doleva:focus,
		  .wb-carousel-control-doprava:focus {
			  outline: none;
		  }
	  
				.wb-carousel-controls-bottom {
				  display: flex !important;
				  justify-content: center !important;
				  gap: 10px !important;
				  margin-top: 12px !important;
				  padding-right: 0 !important;
			  }
	  
			  /* SkrytÄ‚Â­ ÄąË‡ipek pro Hero Carousel */
			  .wb-carousel-control {
				  display: none !important;
			  }
				  .wb-carousel-nav-dots {
					  display: flex;
					  gap: 10px;
				  }
	  
				  .wb-dot {
					  width: 12px;
					  height: 12px;
					  background-color: rgb(219, 217, 217);
					  border-radius: 50%;
					  cursor: pointer;
					  transition: background-color 0.3s, transform 0.3s;
					  border: 2px solid #ddd;
				  }
	  
				  .wb-dot.active {
					  background-color: #7c3aed;
					  border-color: #7c3aed;
				  }
	  
				  .wb-dot:hover {
					  background-color: #aaa;
				  }
	  
		/* ---------------------------------- */
/* FIALOVÄ‚ĹĄ PRUH S BENEFITY */
/* ---------------------------------- */
.wb-benefity {
    background: var(--primary);
    color: #fff;
    padding: 18px 0;
}

.wb-benefity-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 17px;
    font-weight: 500;
}

/* Styl pro odkaz "VÄ‚Â­ce" */
.wb-more-link {
    color: #fff;
    text-decoration: underline;
    margin-left: 5px;
    transition: opacity 0.3s ease;
}

.wb-more-link:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* DecentnÄ‚Â­ animace jemnÄ‚Â©ho zvĂ„â€ştÄąË‡ovÄ‚Ë‡nÄ‚Â­/pulsovÄ‚Ë‡nÄ‚Â­ */
.wb-animate-text {
    animation: wb-pulse 3s infinite ease-in-out;
    display: inline-flex;
    align-items: center;
}

@keyframes wb-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03); /* Jen velmi jemnÄ‚Â© zvĂ„â€ştÄąË‡enÄ‚Â­ */
    }
    100% {
        transform: scale(1);
    }
}

.wb-benefity-container:hover .wb-animate-text {
    animation-play-state: paused;
}
	
	
	
	 

				  .sekce-s-kartami {
					  padding: 60px 24px 24px 24px;
					  background-color: #f9f7ff;
					  text-align: center;
					  margin-top: 0px;
				  }
				  .kontejner-produkt {
					  max-width: 1200px;
					  margin: 0 auto;
				  }
				  .flex-rada {
					  display: flex;
					  justify-content: center;
					  gap: 32px;
					  flex-wrap: wrap;
				  }
				  .produkt-karta-odkaz {
					  position: relative;
					  width: 550px;
					  height: 300px;
					  border-radius: 14px;
					  overflow: hidden;
					  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
					  display: flex;
					  flex-direction: column;
					  justify-content: flex-end;
					  transition: transform 0.3s ease;
					  text-decoration: none;
					  color: inherit;
				  }
				  .produkt-karta-odkaz:hover {
					  transform: translateY(-8px);
					  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
				  }
				  .produkt-karta-odkaz img {
					  position: absolute;
					  top: 0;
					  left: 0;
					  width: 100%;
					  height: 100%;
					  object-fit: cover;
					  z-index: 1;
				  }
	  
	  
		  /* --- PROMO TAG  --- */
		  .promo-tag {
			  position: absolute;
			  top: 0;
			  right: 0; 
			  background-color: rgb(241, 78, 78); 
			  color: white;
			  font-size: 15px;
			  font-weight: 700;
			  text-transform: initial;
			  padding: 8px 16px;
			  line-height: 1; 
			   border-radius: 0 14px 0 14px; 
			  
			  z-index: 5; 
			  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); 
			  
			  transition: none;
		  }
	  
		 
		  .produkt-karta-odkaz:hover .promo-tag {
			  transform: translateY(0);
			  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
		  }
	  
		
		  .produkt-karta-odkaz {
			  border-radius: 14px; 
		  }
	
	  
				  .prekryti {
					  position: absolute;
					  top: 0;
					  left: 0;
					  width: 100%;
					  height: 100%;
					  background: linear-gradient(to bottom, rgba(47, 32, 80, 0) 0%, rgba(24, 23, 23, 0.5) 100%);
					  z-index: 2;
				  }
				  .obsah-produkt-karty {
					  position: relative;
					  z-index: 3;
					  color: #fff;
					  padding: 2rem;
					  text-align: left;
				  }
				  .obsah-produkt-karty h2 {
					  font-size: 1.8rem;
					  margin: 0 0 0.5rem;
					  padding-bottom: 12px!important;
				  }
				  .obsah-produkt-karty p {
					  font-size: 1rem !important;
					  margin: 0 0 1rem;
				  }
				  .produktove-tlacitko {
					  display: inline-block;
					  padding: 10px 20px;
					  background-color: transparent;
					  color: #fff;
					  border: 2px solid #fff;
					  border-radius: 14px;
					  text-decoration: none;
					  font-weight: bold;
					  transition: background-color 0.3s ease, color 0.3s ease;
				  }
				  .produktove-tlacitko:hover {
					  background-color: #fff;
					  color: #7c3aed;
				  }
	  
				  /* ---------------------------------- */
				  /* SEKCE VÄ‚ĹĄHOD (USP) */
				  /* ---------------------------------- */
				  .sekce-vyhody {
					  font-family: Arial, sans-serif !important;
					  text-align: center !important;
					  padding: 48px 24px 56px 24px !important;
					  background: linear-gradient(53deg, rgba(242, 235, 255, 1) 0%, rgba(244, 233, 255, 1) 0%, rgba(252, 252, 252, 1) 49%, rgba(244, 233, 255, 1) 96%) !important;
				  }
	  
				  .usp-grid {
					  display: grid !important;
					  grid-template-columns: repeat(4, 1fr) !important;
					  gap: 40px !important;
					  max-width: 1100px !important;
					  width: 100% !important;
					  margin: 0 auto !important;
					  box-sizing: border-box !important;
				  }
	  
				  .usp-title {
					  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif !important;
					  font-size: clamp(24px, 4vw, 36px) !important;
					  color: #48216b !important;
					  font-weight: 700!important;
					  text-transform:initial!important;
					padding-bottom:12px!important;
				  }
	  
				  .usp-podtitulek {
					  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif !important;
					  top: -32px !important;
					  position: relative !important;
					  font-size: clamp(24px, 4vw, 32px) !important;
					  color: #FF7F78 !important;
					  margin-bottom: 40px !important;
					  text-transform:initial!important;
				  }
	  
				  .vyhoda {
					  display: flex !important;
					  flex-direction: column !important;
					  align-items: center !important;
					  text-align: center !important;
				  }
	  
				  .usp-icon {
					  width: 200px !important;
					  height: auto !important;
					  margin-bottom: 20px !important;
				  }
	  
				  .usp-item-title {
					  font-size: 18px !important;
					  font-weight: 500 !important;
					  color: #2c3e50 !important;
					  margin-top: 0 !important;
				  }
	  
	  
				  /* ---------------------------------- */
				  /* CAROUSEL PRODUKTÄąÂ® (NEJPRODÄ‚ÂVANĂ„ĹˇJÄą Ä‚Ĺ¤) */
				  /* ---------------------------------- */
				  .products-carousel-section {
					  padding: 1rem 0;
					  max-width: 1920px; 
					  margin: 0 auto; 
				  }
	  
				  .products-carousel-wrapper {
					  position: relative;
					  max-width: 1520px; 
					  margin: 0 auto; 
					  overflow: hidden;
					  padding: 48px 24px 24px 24px; 
					  margin-left: auto;
					  margin-right: auto;
				  }
	  
				  /* HEADER a POZICOVÄ‚ÂNÄ‚Ĺ¤ Äą IPEK */
				  .products-carousel-header {
					  max-width: 1500px;
					  margin: 0 auto;
					  padding: 20px 24px 20px 24px !important; 
					  text-align: center !important;
					  position: relative;
					  display: flex;
					  justify-content: center;
					  align-items: center;
				  }
	  
				  .products-carousel-header h2 {
					  font-family:Intern, sans-serif!important;
					  font-size: 28px !important;
					  color: #48216b !important;
					  font-weight: 700!important;
					  margin: 16px 0 12px 0 !important;
					  text-transform:initial!important;
				  }
				  
			  
				  .products-carousel-control.prev {
					  left: calc(50% - 60px)!important;
				  }
	  
				  .products-carousel-control.next {
					  right: calc(50% - 60px)!important;
				  }
				  
			  
				  .products-carousel-control {
					  position: absolute;
					  top: 105%;
					  transform: translateY(-50%);
					  z-index: 10;
					  width: 38px;
					  height: 38px;
					  padding: 0;
					  border-radius: 8px;
					  background-color: #f2ebff !important;
					  border: 1px solid #7c3aed !important;
					  cursor: pointer;
					  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
					  transition: all 0.2s ease-in-out;
					  display: flex;
					  justify-content: center;
					  align-items: center;
				  }
				  
				  .products-carousel-control img {
					  width: 50%!important;
					  height: auto!important;
					  filter: invert(18%) sepia(35%) saturate(3025%) hue-rotate(247deg) brightness(80%) contrast(97%)!important;
					  transition: filter 0.2s!important;
				  }
				  
				  .products-carousel-control:hover {
					  background-color: #e6d9ff !important;
					  border-color: #6a2ecb !important;
					  transform: translateY(-50%) scale(1.08);
				  }
	  
				  .products-carousel-inner {
					  display: flex; 
					  gap: 8px; 
					  transition: transform 0.5s ease-in-out;
					  justify-content: flex-start !important; 
				  }
	  
				  .product-item {
					  flex-shrink: 0!important;
					  width: 280px!important;
					  display: flex!important;
					  flex-direction: column!important;
					  align-items: center!important;
					  text-align: center!important;
					  text-decoration: none!important;
					  color: inherit!important;
				  }
	  
				
				  
				  .product-card {
					  position: relative!important;
					  width: 100%!important;
					  height: 300px!important;
					  background: white!important;
					  border-radius: 12px!important;
					  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05)!important;
					  overflow: hidden!important;
					  margin-bottom: 20px!important;
				  }
	  
				  .product-image {
					  width: 100% !important;
					  height: 100% !important;
					  object-fit: cover !important;
					  padding: 0 !important;
					  border-radius: 12px !important;
				  }
	  
				  .add-to-cart-icon {
					  position: absolute !important;
					  bottom: 15px !important;
					  right: 15px !important;
					  background: white !important;
					  border-radius: 50% !important;
					  width: 40px !important;
					  height: 40px !important;
					  display: flex !important;
					  justify-content: center !important;
					  align-items: center !important;
					  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
					  color: #4b2d6a !important;
					  transition: all 0.2s ease !important;
				  }
	  
				  .add-to-cart-icon:hover {
					  transform: scale(1.1) !important;
					  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
				  }
	  
				  .product-details {
					  width: 100%!important;
					  padding: 0 10px!important;
				  }
	  
				  .product-title {
					  font-size: 18px!important;
					  color: #48216b!important;
					  margin-top: 0!important;
					  margin-bottom: 8px!important;
					  font-weight: 600!important;
				  }
	  
				  .product-tags {
					  display: flex!important;
					  justify-content: center!important;
					  gap: 8px!important;
					  margin-bottom: 12px!important;
				  }
	  
				  .tag {
					  font-size: 16px !important;
					  
					  background-color: #f2ebff!important;
					  color: #7c3aed!important;
					  padding: 4px 8px!important;
					  border-radius: 4px!important;
					  font-weight: 500!important;
					  white-space: nowrap!important;
				  }
	  
				  .price-info {
					  font-size: 18px !important;
					  color: #48216b!important;
					  font-weight: 700!important;
				  }
	  
				  
				  .price-amount{
					  font-size: 18px !important;
					  color: #48216b!important;
					  font-weight: 700!important}
					  
	  
	   
					  .price-amount{
			font-size: 18px !important;
			color: #48216b!important;
			font-weight: 700!important}
			
			.price-container {
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 2px;
			margin-top: 10px;
		}
	
		.price-top-row {
			display: flex;
			align-items: center;
			gap: 10px;
		}
	
		.discount-tag {
			background-color: rgb(248, 100, 93) !important;
			color: white !important;
			padding: 3px 10px !important;
			border-radius: 8px !important;
			font-weight: 700 !important;
			font-size: 14px !important;
		}
	
		.price-main {
			color:rgb(248, 100, 93) !important; 
			font-size: 18px !important;
			font-weight: 800 !important;
		}
	
		.price-bottom-row {
			width: 100%;
			display: flex;
			justify-content: center;
			padding-left: 45px; 
		}
	
		.price-original {
			color: #7a5a8f !important;
			text-decoration: line-through !important;
			font-size: 16px !important;
			font-weight: 500 !important;
			opacity: 0.7;
		}
	
	  
			/* Doprava */
	  
		.wb-doprava {
    background: #fff; 
    padding: 40px 20px;
    font-family: Inter, sans-serif sans-serif;
}

.wb-doprava-container {
    max-width: 900px;
    margin: 0 auto;
}

.wb-doprava-container h2 {
    text-align: center;
    color: #48216b;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: initial!important;
}

.wb-doprava-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wb-dopravce-row {
    display: grid;
    grid-template-columns: 80px 1fr auto; /* Logo | Text | Cena */
    align-items: center;
    padding: 15px 25px;
    background: #fdfbff;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.wb-dopravce-row:hover {
    border-color: #7c3aed;
    background: #f9f7ff;
    transform: scale(1.01);
}

.wb-logo-wrap img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.wb-info-wrap {
    padding-left: 20px;
}

.wb-info-wrap h3 {
    margin: 0;
    font-size: 17px;
    color: #48216b;
    font-weight: 600;
}

.wb-info-wrap p {
    margin: 2px 0 0 0;
    font-size: 14px;
    color: #6b7280;
}

.wb-price-wrap .price {
    font-weight: 700;
    color: #7c3aed;
    font-size: 16px;
    background: #f2ebff;
    padding: 6px 12px;
    border-radius: 8px;
}

	
	
.wb-recenze-wrapper {
    position: relative;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 24px; 
    box-sizing: border-box;
}



/* Styl pro text 4.8, aby pod nÄ‚Â­m tlaĂ„Ĺ¤Ä‚Â­tko sedĂ„â€şlo */
.wb-rating-score {
    font-size: 24px;
    font-weight: 800;
    color: #483285;
    margin: 10px 0; 
}

/* HlavnÄ‚Â­ tlaĂ„Ĺ¤Ä‚Â­tko v hlaviĂ„Ĺ¤ce */
.wb-header-cta-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color:  #7c3aed;
    color: #ffffff;;

    border-radius: 12px; 
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 5px;
    margin-bottom: 20px;
}

.wb-header-cta-btn:hover {
    background-color: #483285;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(72, 50, 133, 0.2);
    transform: translateY(-2px);
}

.wb-google-main-logo {
    width: 100px;
    margin: 10px auto;
    display: block;
}

.wb-recenze-cards {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start; 
    gap: 16px;
    overflow-x: auto;
    padding: 8px 8px; 
     scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    text-align: left; 
}

.wb-recenze-card {
    flex: 0 0 300px; 
    scroll-snap-align: center; 
    background: #ffffff;
padding: 2Ă˘â€šÂ¬px;
border-radius: 12px;
border: 1px solid #e0e0e0;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
display: flex;
flex-direction: column;
text-align: left;
}

.wb-recenze-cards::-webkit-scrollbar {
    display: none;
}

.wb-recenze-cards:active {
    cursor: grabbing;
}





.wb-recenze h2 {
    font-size: 28px;
    color: #483285; 
    margin-bottom: 8px;
    font-weight: 800;
    text-transform: initial!important;
}

.hodnoceni {
    font-size: 24px;
    color: #483285;
    font-weight: 700; 
 
}
.wb-recenze-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1; 
}






.wb-author-name {
    font-weight: 700;
    color: #111827;
    font-size: 15px;
    margin-bottom: 5px;
    display: block;
}


.wb-google-source {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

.wb-google-source span {
    font-size: 12px;
    color: #9ca3af;
}

.wb-google-icon {
    width: 20px;
    height: 20px;
 
}

.wb-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
	background-color: #f2ebff !important;
	border: 1px solid #7c3aed !important;
    border-radius: 50%!important;
    border: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wb-nav-btn:hover {
    background: #f8f8f8;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.wb-prev { 
    left: 0px; 
}
.wb-next { 
    right: 0px; 
}

.wb-nav-btn svg {
    width: 20px;
    height: 20px;
	fill: #374151!important;
	
}


	/* Inspirace  */
			
	.inspirace {
		max-width: 1920px; 
		background-color: #fdfcf9;
		padding: 60px 0; 
		font-family: 'Inter', sans-serif;
		display: flex;
		flex-direction: column;
		margin: 0 auto; 
		align-items: center; 
		overflow: hidden;
	}

	.inspo-nadpis {
		width: 100%;
		text-align: center; 
		max-width: 1250px;
		color: #636161;
		font-size: 24px;
		margin-bottom: 32px;
		font-weight: 500;
		padding: 0 20px;
		text-transform:initial!important;
	}

	.inspo-karty-wrapper {
		display: flex;
		flex-direction: row;
		gap: 20px;
   
		padding: 10px 40px 40px 40px; 
		justify-content: flex-start; 
		width: 100%;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none; 
	}

	.inspo-karty-wrapper::-webkit-scrollbar { 
		display: none; 
	}

	.inspo-karta {
		flex: 0 0 300px; 
		height: 220px;
		background: #ffffff;
		border-radius: 12px;
		padding: 24px; 
		display: flex;
		flex-direction: column;
		justify-content: space-between; 
		text-decoration: none; 
		box-shadow: 0 10px 30px rgba(0,0,0,0.03);
		transition: all 0.3s ease-in-out;
		border: 1px solid #f0f0f0;
		cursor: pointer; 
		scroll-snap-align: center;
	}

	.inspo-karta:hover {
		background-color: #f3f0f7; 
		border-color: #e2d9eb; 
		transform: translateY(-5px); 
		box-shadow: 0 12px 25px rgba(110, 80, 150, 0.1); 
	}

	.inspo-karta-ikona {
		width: 47px; 
		height: 47px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		font-size: 1.7rem;
	}

	.inspo-karta-text {
		font-size: 20px;
		font-weight: 700;
		line-height: 1.3;
		color: #2d2d2d; 
		margin-top: 15px;
	}

	.inspo-karta-subtext {
		display: block;
		font-size: 15px;
		font-weight: 400;
		color: #888;
		margin-top: 6px;
	}

	/* Barvy textĹŻ */
	.text-gold { color: #c5a86d; }
	.text-rose { color: #d68181; }
	.text-sky { color: #78a3bc; }
	.text-sage { color: #8ba888; }
	.text-red { color: #c7200a; }

   
	@media (min-width: 1400px) {
		.inspo-karty-wrapper {
			justify-content: center;
		}
	}

   

				  /* Sekce pro balik */
				  .wb-draha {
					  max-width: 100%;
					  height: 78px; 
					  position: relative;
					  background-color: rgb(226, 221, 250);
					  z-index: 1;
				  
				  }
	  
				  /* === balik === */
			  
			  #wb-balik {
					  width: 120px!important; 
					  height: 80px !important; 
					  overflow: hidden; 
				  }
	  
				  .balik {
					  position: absolute;
					  
					  left: -250px; 
					  animation: balikAnimation 9s linear infinite; 
				  }
	  
			  
	  
	  
				  @keyframes balikAnimation {
					  0% {
						  left: -250px; 
					  }
					  100% {
						  left: 100%; 
					  }
				  }
	  
	  
		  
	  
				  /* ===== Responzivita ===== */
				  
				  @media (max-width: 980px) {
					  /* HERO SEKCE (Laptopy, Tablety) */
					  .wb-hero-section-wrapper {
						  
						  padding: 30px 0px; 
					  }
	  
					  .wb-static-content h1 {
						  padding-top:16px;
					  font-size: 48px !important; 
			  }
	  
				  
					  .wb-hero-container {
						  max-width: none; 
						  padding: 0 14px; 
						  grid-template-columns: 1fr; 
					  }
	  
					  .wb-hero-carousel-container {
	  
						  height: 60vh; 
						  max-height: initial; 
					  }
	  
					  .wb-static-content {
						  text-align: center;
						  padding: 0;
						  order: 1; 
					  }
					  
					  .wb-carousel-container-wrapper {
						  order: 2; 
					  }
	  
					  .wb-static-content h1 {
						  font-size: 32px !important;
						  text-transform:initial!important;
					  }
	  
					  .wb-btn {
						  align-self: center;
					  }
					  
					  /* SEKCE KARET PRODUKTÄąÂ® */
					  .produkt-karta-odkaz {
						  width: 100%; 
					  }
	  
				  
					  /* SEKCE USP (VÄ‚ĹĄHODY) - pro tablety a menÄąË‡Ä‚Â­ */
					  .usp-grid {
						  grid-template-columns: repeat(2, 1fr) !important; 
						  gap: 30px !important;
					  }
	  
				  
					  
				  }
	  
				  @media (max-width: 768px) {
	
	
	
	.sale-badge-gold-label {
		
	 
		top: 0px !important; 
		left: 0px !important; 
		padding: 8px 12px  !important; 
	
	}
	.sale-overlay-text{
		font-size:18px!important; 
	}
				  
					  .wb-hero-carousel-container {
						  
						  height: 38vh; 
						  max-height: 370px; 
					  }
	  
				  .wb-static-content h1 {
				  
				  font-size: 30px !important; 
			  }
	
	  
					  /* SEKCE USP (VÄ‚ĹĄHODY) - pro menÄąË‡Ä‚Â­ mobily */
					  .usp-grid 
						  grid-template-columns: repeat(2, 1fr) !important; 
						  gap: 20px;
					  }
	  
					  .usp-icon {
						  width: 120px !important; 
					  }
					  
					  .products-carousel-wrapper {
					  
						  margin-top: 24px !important; 
					  }
				
					  .usp-title {
				  font:30px !important;
				  
				  }
		  /* doruceni */
		  .wb-doprava h2{
			  font-size: 28px;
		  
		  }
	  

.wb-fb-footer-section {
    background-color: #fc9090 !important; 
    padding: 20px 0;
    width: 100%;
    display: block;
    border: none; 
}

.wb-fb-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.wb-fb-text-side {
    max-width: 550px;
    text-align: left;
}

.wb-fb-tag {
    background: #3c1361 !important; 
    color: #ffffff !important;
    padding: 6px 16px;
    border-radius: 50px!important;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.wb-fb-text-side h3 {
    font-size: 36px;
    margin: 0;
    color: #ffffff !important;
    font-weight: 800;
    line-height: 1.2;
    text-transform: initial!important;
}

.wb-fb-text-side p {
    font-size: 18px;
    color: #ffffff !important;
    margin-top: 10px;
    opacity: 0.95;
}

.wb-fb-button {
    background: #ffffff !important;
    padding: 16px 32px;
    border-radius: 20px!important;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: #3c1361 !important; 
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(60, 19, 97, 0.15);
    transition: all 0.3s ease;
}

.wb-fb-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(60, 19, 97, 0.25);
}

.wb-fb-svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .wb-fb-container {
        flex-direction: column;
        text-align: center;
    }
    .wb-fb-text-side {
        text-align: center;
    }
    .wb-fb-text-side h3 {
        font-size: 26px;
    }
}





				  
				  
		  @media (max-width: 580px) {
	  
	  
		/* SLIDER MOBIL */
				 
			  .wb-hero-carousel-container {
					  
						  height: 430px; 
						  max-height: 430px;
						
					  }    
					  
	
	
		  
			  
		  .wb-carousel-item.slide-1 {
				  
				  background-image: url('https://fotokniha.fra1.cdn.digitaloceanspaces.com/fotosesit/galerie/fotosesit_hero.webp'); 
			  }
			  
			  .wb-carousel-item.slide-2 { 
			  background-image: url('https://fotokniha.fra1.cdn.digitaloceanspaces.com/Promo%20/den_matek_fotoobraz.webp'); 
		  }

			  .wb-carousel-item.slide-3 {
				  background-image: url('https://fotokniha.fra1.cdn.digitaloceanspaces.com/Promo%20/den-matek/den_matek.webp');
			  }
			  
			  
		
			  .wb-carousel-item.slide-4 {
				  background-image: url('https://fotokniha.fra1.cdn.digitaloceanspaces.com/html/HP/bannery/Mobil_fotokniha_pevna3.webp');
			  }
	
	
	  /* DROPDOWN MENU NA MOBILU */
	  .wb-dropdown {
		  align-self: center;
	  }
	
	  .wb-dropdown-menu {
		  left: 50%;
		  transform: translateX(-50%) scaleY(0) translateY(-10px);
		  transform-origin: top center;
		  width: 200px;
	  }
	
	  .wb-dropdown:hover .wb-dropdown-menu,
	  .wb-dropdown-menu:hover {
		  transform: translateX(-50%) scaleY(1) translateY(0);
	  }
	
	  /* PRODUKTOVÄ‚ĹĄ CAROUSEL */
			  
	   .products-carousel-inner {
	  
	  display: flex; 
	  
	  overflow-x: auto; 
	  
	  -webkit-overflow-scrolling: touch; 
	  scrollbar-width: none; 
	  
	  flex-wrap: nowrap; 
	  gap: 16px;
	  }
	  
	  .products-carousel-inner::-webkit-scrollbar {
	  display: none;
	  }
	  
	  .products-carousel-inner .product-item {
	  scroll-snap-align: start;
	  
	  width: 80vw !important; 
	  max-width: none;
	  }
	  
	  
	  
	  .products-carousel-control.prev {
	  left: 10px !important;
	  top: 40px !important; 
	  transform: translateY(0);
	  }
	  .products-carousel-control.next {
	  right: 10px !important;
	  top: 40px !important; 
	  transform: translateY(0);
	  }
	  .products-carousel-header {
	  padding: 20px 16px 20px 16px !important; 
	  }
	  
	  .products-carousel-control {
	  display: none !important; 
	  }
	  
	  .products-carousel-header h2{
	  font-size: 24px!important;
	  padding:16px 12px 0px 12px;
	  text-transform:initial!important;
	  }
	  
	  
	  .products-carousel-wrapper {
	  padding: 12px 0px 24px 16px; 
	  margin-left: 0;
	  margin-top: 16px !important;
	  text-transform: initial!important; 
	  }
	  
	  
	  
	  .products-carousel-inner {
	  
	  justify-content: flex-start !important; 
	  }
	  
	  
	  
	  
	  
		  /* --- PRUHU BENEFITÄąÂ®*/
		  
			  
			  .wb-benefity {
				  padding: 14px 0 ; 
			  }
			  
	  
			  .wb-benefity-container {
				  padding: 0 20px; 
				  flex-wrap: wrap; 
				  justify-content: center;
			  }
	  
			  
			  .wb-benefity-container span {
		  
				  white-space: normal !important; 
				  text-align: center;  
				  font-size: 16px;
				  
				  width: 100%; 
			  
			  }
			  
			  
			  .usp-title{
				  
				  text-transform:none!important;
				  font-size:30px!important;
				  max-width:365px;
				  line-height: 1.4;
				
		   
				  }
				  .usp-podtitulek{
				   padding-top:8px!important;
				   text-transform:none!important;
				  font-size:25px!important;
		   
				  }
	  
		  .wb-recenze h2 {
			  font-size:30px!important;
			  font-weight: 700!important;
		  }
				  
				 
		  .wb-carousel-control-doleva,
		  .wb-carousel-control-doprava {
			  display: flex !important; 
			  justify-content: center;
			  align-items: center;
			  
			  /* POZICE */
			  position: absolute; 
			  top: 50%;
			  transform: translateY(-50%);
			  z-index: 10; 
			   width: 48px;
			  height: 48px;
			  padding: 0;
			  border-radius: 8px; 
			  background-color: #f2ebff !important; 
			  border: 1px solid #7c3aed !important; 
			  cursor: pointer;
			  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
			  transition: all 0.2s ease-in-out;
		  }
		  
	  
		  .wb-carousel-control-doleva img,
		  .wb-carousel-control-doprava img {
			  width: 50%; 
			  height: auto;
			  padding: 0;
			  margin-right: 2px; 
			  
		  
			  filter: invert(18%) sepia(35%) saturate(3025%) hue-rotate(247deg) brightness(80%) contrast(97%)!important;
		  }
	  
		  
		  .wb-carousel-control-doleva {
			  left: 4px; 
	  
		  }
		  .wb-carousel-control-doprava {
			  right: 4px;
			  
		  }
		  .wb-carousel-controls-bottom {
			  
			display:none!important;
		  }
	  
		  
		  .wb-carousel-container-wrapper {
			  
			  height: auto; 
			  padding-bottom:12px;
		  }
		  
		 
		  .wb-carousel-control-doleva:focus,
		  .wb-carousel-control-doprava:focus {
			  outline: none;
		  }
	  
	  
				  
				  /* Sekce pro Dopravu -  */
				  
	  
				  .wb-doprava-prehled {
					  flex-direction: column;
					  gap: 16px; 
					  padding: 0 24px;
				  }
	  
				  .wb-doprava-moznost {
					  width: 100%;
					  max-width: none;
					  flex: none;
				  }
				  
				  
				  
				  .wb-doprava-moznost h3 {
			  
					  font-size: 1.6em; 
					  font-weight: 700;
				  }
				  .wb-doprava-moznost p {
					  
					  font-size: 1.1em;
				  }
				  .wb-doprava-moznost img {
					  
					  height: 60px; 
					  margin-bottom: 16px; 
				  }
	  
	  
				  
				  .wb-doprava h2{
					  
					  font-size: 30px!important;
					  padding: 24px 12px  12px;
					  margin-bottom: 16px !important; 
					  text-transform:initial;
				  }
				  
	  
			  }
           
.wb-show-more-wrapper {
  
    display: none;
    text-align: center;
    margin-top: 20px;

}

#wb-show-more-btn {
    
    background: none;      
    border: none;          
    color: #7c3aed;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;  
    align-items: center;
    padding: 10px;
    transition: opacity 0.2s;
}

#wb-show-more-btn:hover {
    opacity: 0.8;
}


#wb-show-more-btn::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #7c3aed;  
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
   
}

#wb-show-more-btn.active::after {
    transform: rotate(180deg);
}
@media (max-width: 600px) {
    .wb-doprava-list .wb-dopravce-row:not(:first-child) {
        display: none;
    }
    .wb-doprava-list.is-open .wb-dopravce-row {
        display: grid !important;
    }
    .wb-show-more-wrapper {
        display: block;
    }
	
}
	
		  @media (max-width: 768px) {

			  .wb-dropdown.active .wb-dropdown-menu {
				  opacity: 1;
				  visibility: visible;
				  transform: translateX(-50%) scaleY(1) translateY(0);
			  }
		  }
        
          /* Responzivita pro mobily */
@media (max-width: 600px) {
    .wb-dopravce-row {
        grid-template-columns: 60px 1fr;
        padding: 15px;
    }
    .wb-price-wrap {
        grid-column: 2; 
        margin-top: 10px;
        text-align: left;
    }
    .wb-price-wrap .price {
        display: inline-block;
    }
}	

/* --- RESPONZIVITA --- */
@media (max-width: 768px) {
    .wb-recenze-wrapper {
        padding: 0 20px; 
    }
    
    .wb-nav-btn {
        display: none; 
    }

    .wb-recenze-card {
        flex: 0 0 280px; 
    }
}