/* Review Styles */
.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Ensures even spacing between reviews */
    margin: 20px 0;
    padding-left: 4rem;
    padding-right: 4rem;
    border-color: #e7e7e7;
    border-style: solid none;
    border-width: 1px 0;
}

.reviews-header {
    width: 100%;
    text-align: center;
}

.review {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex-basis: calc(25% - 20px); /* Each review takes up 25% of the container width, minus margins */
    box-sizing: border-box; /* Ensures padding and border are included in the width */
    border-color: 2px solid #839788 !important; 
}

.review-image img {
    width: 100%;
    height: auto;
}

.review-name {
    background-color: black;
    color: white;
    padding: 10px;
    width: 100%;
    text-align: center;
}

.review-name h3 {
    color: white;
    margin: 10px;
}

.review-text {
    padding: 10px;
    background-color: #fff;
    color: black;
    font-size: 14px;
    text-align: center;
    height: 100%;
}
.insta-and-stars a {
    color: white;
    text-decoration: none; /* Removes underline */
}

.star-rating{
    color: gold;
}
/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .review {
        flex-basis: calc(100% - 20px); /* Each review takes up full width on small screens */
    }
}

/* Size chart Styles */
.size-chart-button {
    all: unset;
    margin-top: 1rem;
    display: inline-block;
    padding: 6px 45px 6px 11px;
    font: inherit; /* Inherit font properties from parent */
    border: 2px solid transparent; /* Reset border and make it transparent */
    border-color:  #000;
    background-color: #fff;
    color: #000;
    text-align: center;
    cursor: pointer; /* Ensure the button has a pointer cursor */
    box-shadow: none; /* Remove default shadow effects */
    text-transform: none; /* Remove text transformation */
}

.size-chart-button:hover {
    background-color: #000;
    color: #fff;
}

.size-chart-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5); /* Semi-transparent background */
}

.size-chart-modal-content {
    position: relative;
    margin: 15% auto;
    padding: 20px;
    width: 100%;
    max-width: 700px;
    background-color: #fff;
    text-align: center;
    border-radius: 4px;
}

.size-chart-image {
    width: 100%;
    height: auto;
}

.size-chart-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}

/* Flag Styles */
.flag.flag-action {
    background-color: #f8a102;
}

.flag.flag-discount {
    background-color: #f8a102;
}
.flag{
    color:#000
}

span.flag.flag-custom2 {
   /*  display: none; */
}

.flags-extra .flag {
    height: 80px;
    width: 80px;
    font-size: 10px;
}

/* Header Styles */
#header {
    background-color: black;
}

/* Menu Item Styles */
.menu-item-891 {
    display: none;
}

/* Contact Info Styles */
@media (max-width: 768px) {
    .contact-info-container {
        display: none !important;
    }
}

/* Button Colors */
.btn.btn-cart, .btn.btn-conversion, a.btn.btn-cart, a.btn.btn-conversion {
    background-color: #EF7C09;
    border-color: #EF7C09;
    color: #fff;
}

/* Discount Container Styles */
.discount-container {
    display: inline-block; /* Make the container width fit its content */
    align-items: left;
    justify-content: center; /* Center the content */
    border: 2px solid #000; /* Add a border around the container */
    margin: 10px 5px; /* Add margin outside the container */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.discounted-price {
    display: inline-block; /* Ensure the width is just around the text */
    padding: 5px 10px;
    font-size: 22px;
    font-weight: bold;
    background-color: #000000;
    color: #ffffff;
    margin-right: 15px; /* Add space between the price and the text */
}

.discount-text {
    display: inline-block; /* Ensure the text is on the same line */
    color: #000;
    font-size: 18px;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .discount-text {
        padding-right: 10px; /* Adjust padding for smaller screens */
        font-size: 16px; /* Adjust font size for smaller screens */
    }
    .discounted-price {
        margin-right: 10px; /* Add space between the price and the text */
    }
}

.discount-container-category {
    color: #000;
    font-size: 16px;
}

/* Description Container Styles */
.description-container {
    display: block;
}

.description-left, .description-right {
    width: 100%;
    box-sizing: border-box;
}

.description-right {
    padding-top: 20px;
    border-top: 1px solid #ccc; /* Optional: adds a separator line */
}

/* Desktop Styles */
@media (min-width: 768px) {
    .description-container {
        display: flex;
        justify-content: space-between;
    }

    .description-right {
        text-align: center;
        padding-left: 20px;
        padding-top: 0;
        padding-bottom: 10px;
        border-left: 1px solid #ccc; /* Optional: adds a separator line */
        border-top: none;
    }
    .p-param-block{
        text-align: left;
    }
}

.description-right h2 {
    margin-top: 0;
}
/* Contact in Cart */
.info-box {
    width: 100%;
    height: auto; /* Adjust height to fit content */
    max-height: 70px; /* Max height to prevent it from growing too tall */
    border: 1px solid #ccc;
    background-color: black;
    color: #fff;
    padding: 10px 15px; /* Adjust padding for better fit */
    margin-top: 20px;
    font-family: Arial, sans-serif;
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of content */
    align-items: center;
    text-align: left;
}

.info-box span {
    display: flex; /* Use flex to align items in a line and wrap */
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; /* Allow wrapping of the span content */
}

.info-box h3 {
    margin-right: 10px; /* Adjust margin for better spacing */
    margin-top: 5px;
    font-size: 16px; /* Slightly smaller font size */
    color: #fff;
}

.info-box i {
    color: orange;
    margin-right: 5px;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .info-box {
        padding: 10px; /* Adjust padding on smaller screens */
        height: auto; /* Allow the box to expand based on content */
        max-height: none; /* Remove max-height restriction */
    }


    .info-box h3 {
        margin-bottom: 5px; /* Margin below heading */
        font-size: 18px; /* Smaller font size for smaller screens */
        width: 100%;
    }
}


/* Additional Styles */
.pr-list-unit {
    display: none;
}
.body.ordering-process .sidebar {
    margin-left: 2rem;
}

.show-related{
    display: none;
}

/* Category banners */
.extended-banner-title {
    font-size: 44px;
    font-weight: bold;
    bottom: 20px;
    left: 20px;
    color: white;
    top: auto; /* Reset top if it was set */
}

.body-banners .banner-wrapper {
    margin: 0;
    padding-right: 20px;

}

.extended-banner-link, .extended-banner-text, .extended-banner-title {
    background-color: transparent;
    border: transparent;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .16);
    padding: 5px;
}
.size-chart-text{
    text-align: left;
}
.support-banner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid #e7e7e7;
    padding: 10px 15px;
    width: 100%;
    max-width: 1400px;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
  }
  
  .support-banner__left {
    flex: 1;
    min-width: 65%;
  }

  
  .support-banner__left p {
    margin-bottom: 24px;
    font-size: 14px;
    color: #444;
  }
  
  .support-banner__left h3 {
    margin-bottom: 10px;
  }

  .support-banner__contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .support-banner__contact li {
    margin-bottom: 6px;
    font-size: 16px;
  }
  
.support-banner__right {
    display: flex; /* Use flexbox to align child divs */
    flex-direction: row; /* Default direction for larger screens */
    text-align: left;
    max-width: 280px;
    flex-shrink: 0;
    gap: 10px; /* Optional: Add spacing between the divs */
    align-items: flex-end; /* Align items to the bottom of the div */
}

@media (max-width: 768px) {
    .support-banner__right {
        flex-direction: column; /* Change to column direction on smaller screens */
        align-items: flex-start; /* Align items to the start */
    }
}
.support-banner p {
    font-size: 12px;
}
  
.support-banner__image {
   border-radius: 10px;
    margin-bottom: 12px;
    max-height: 150px;
}
  
.support-banner__name {
    font-size: 16px;
    color: #333;
}
.support-banner__name p {
    margin: 0;
}

.support-banner__name strong {
    display: block;
    font-size: 18px;
    color: #000;
    margin-bottom: 0px;
}

/* Styl pro kontaktní pruh nad hlavičkou */
.contact-info-container {
    background-color: black;
    color: white;
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 5px 26px;
    font-size: 14px;
    font-family: sans-serif;
    z-index: 1000;
  }
  
  .contact-info-container i {
    color: orange;
    margin-right: 5px;
  }
  
  .contact-info-container span {
    margin-right: 20px;
  }
  
  .contact-info-container span:last-child {
    margin-right: 0;
  }

/* Styl pro desktopové oblíbené kategorie */
@media (min-width: 769px) {
    .fav-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin: 40px 0;
      padding: 0 20px;
    }
    .fav-grid .fav-item {
      position: relative;
      display: block;
      height: 300px;
      background-size: cover;
      background-position: center;
      overflow: hidden;
      color: #fff;
      text-decoration: none;
    }
    .fav-grid .fav-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    }
    .fav-grid .fav-item .content {
      position: absolute;
      bottom: 20px;
      left: 20px;
      z-index: 1;
    }
    .fav-grid .fav-item .content h3 {
      margin: 0 0 5px;
      font-size: 24px;
      line-height: 1.2;
      color: #fff;
    }
    .fav-grid .fav-item .content span {
      font-size: 16px;
      font-weight: 500;
    }
  }
  
  @media (max-width: 768px) {
    .fav-cat-desktop {
      display: none !important;
    }
  }

/* Styl pro mobilní oblíbené kategorie */
  @media (max-width: 768px) {
    .fav-cat {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
    }
    .fav-cat h4 {
        margin-bottom: 20px;
    }
    .fav-cat ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        list-style-type: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    .fav-cat ul li {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #f5f5f5;
        padding: 10px;
        border-radius: 8px;
    }
    .fav-cat img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        margin-bottom: 8px;
    }
    .fav-cat a {
        text-decoration: none;
        color: inherit;
        display: block;
        width: 100%;
        height: 100%;
    }
    .fav-cat span {
        display: block;
        font-size: 14px;
    }
    .fav-cat ul .menu-item-last {
        grid-column: span 2; /* Make the last item span across two columns */
    }
}

/* Hide fav-cat on larger screens */
@media (min-width: 769px) {
    .fav-cat {
        display: none;
    }
}