body{
    margin: 0;
    padding: 0;
    font-family: "Libre Franklin", sans-serif;
}
.max-width {
    max-width: 1500px;
    margin: 0 auto;
}
.slidescomponent {
  margin: auto;
  margin-top: 30px;
  position: relative;
  width: 80%;
  overflow: hidden;
  max-width: 1200px;
  max-height: 600px;
}
.banners-wrapper {
  overflow: hidden;
  border-radius: 0px;
  width: 100%;
  height: 100%;
}
.banners {
  display: flex;
  border-radius: 0px;
  transition: transform 0.5s ease-in-out;
}
.banner {
  flex: 0 0 100%;
  position: relative;
}
.banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
}
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.dot {
  width: 22px;
  height: 8px;
  background-color: #ffffff;
  border: 0.5px solid #c6d5e3;
  border-radius: 5px;
  cursor: pointer;
}
.dot.active {
  background-color: #2e4053;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(249, 249, 250, 0.7);
  background: none;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}
.arrow.left {
  left: 20px;
}
.arrow.right {
  right: 20px;
}
.categories{
    width: 80%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
    gap:20px;
    display: flex;
    justify-content: space-between;
}
.category{
    max-width: 33%;
    max-height: 247px;
}
.category img{
    max-width: 100%;
}
.category:hover .textover{
    color: #b8121d;
    text-decoration: underline;
}
.products {
    margin: 0 auto;
    padding: 20px;
    width: 80%;
}
.products h2 {
    font-size: 24px;
    color: #b8121d;
    margin-bottom: 20px;
    text-align: center;
}
.products h2 span {
    font-size: 26px;
    color: #2e4053;
}
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.product-1 {
    width: 265px;
    border: 2px solid lightgray;
    border-radius: 4px;
    padding: 10px;
    text-align: center;
}
.product-2 {
    width: 265px;
    border: 2px solid lightgray;
    border-radius: 4px;
    padding: 10px;
    text-align: center;
}
.product-1:hover {
    border: 2px solid #b8121d;
}
.product-2:hover {
    border: 2px solid #b8121d;
}
.product-1 img{
    max-width: 100%;
    margin-bottom: 10px;
}
.product-2 img{
    max-width: 100%;
    margin-bottom: 10px;
}
.product-1 h3{
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    color: #2e4053;
    margin-bottom: 15px;
}
.product-2 h3{
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    color: #2e4053;
    margin-bottom: 15px;
}
.zobrazit-nabidku{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.zobrazit-nabidku a{
    margin-bottom: 35px;
    display: inline-block; 
    background-color: #b8121d; 
    color: white; 
    padding: 0.75rem 1.5rem; 
    border-radius: 5px; 
    text-decoration: none; 
    font-weight: bold;
}
.nav{
    margin-top: 50px;
    margin-bottom: 50px;
    color: #2e4053;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}
.google-reviews{
    margin: auto;
    margin-bottom: 20px;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; 
    padding: 2rem;
}
.google-reviews a{
    margin-top: 45px;
    display: inline-block; 
    background-color: #4285F4; 
    color: white; 
    padding: 0.75rem 1.5rem; 
    border-radius: 5px; 
    text-decoration: none; 
    font-weight: bold;
}
.google-reviews p{
    margin-top: 1rem; 
    color: #5d5d5d;
}
.google-reviews h2{
    font-size: 26px;
    color: #2e4053;
    margin-bottom: 30px;
}
.reviews-container{
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-direction: row;
    justify-content: space-evenly;
}
.reviews-container img{
    border-radius: 5px;
    max-width: 450px;
}
#brand-name{
    display: flex;
    flex-direction: row;
}
#brand-name img{
    max-width: 300px;
    max-height: 45px;
    margin-bottom: -10px;
}
.devider-rounded{
  background-color: #90a4ba46;
  border: none;
  height: 5px;
  border-radius: 12px;
  max-width: 85%;
  margin: 20px auto;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
}
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
