.flex-filterbox p {
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0px;
}

.flex-filterbox {
  max-width: 340px;
}

.cena {
  font-size: 18px;
  color: #666666;
}

.cena span {
  color: #ff09f5;
}

.input-filter-box {
  display: flex;
  align-items: center;
}

.input-filter {
  width: 160px;
  border: 1px solid #ff09f5;
  border-radius: 20px;
  outline: none;
  padding: 6px 10px;
  box-sizing: border-box;
  font-size: 18px;
  color: #222222;
  font-weight: 500;
}

.input-filter::placeholder {
  font-size: 18px;
}

.input-filter:not(:last-child) {
  margin-right: 20px;
}

.go-search {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  background: linear-gradient(to top, #ff09f5, #ff4747);
  border-radius: 20px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
  overflow: hidden;
}


.go-search::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineGoSearch 2.2s ease-in-out infinite;
  pointer-events: none;
  border-radius: 20px;
}

@keyframes shineGoSearch {
  0% {
    left: -60%;
  }
  100% {
    left: 120%;
  }
}

.tg-block-filter {
  display: flex;
  align-items: center;
  width: 100%;
}

.tg-block-filter p {
  color: white;
  font-weight: 500;
}

.logo-tg-tg {
  margin-right: 5px;
}

.tg-block-filter {
  position: relative;
  background-color: #2eadf0;
  color: white;
  border-radius: 20px;
  border: 1px solid #ff09f5;
  width: 100%;
  box-sizing: border-box;
  padding: 0px 12px;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 15px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.tg-block-filter::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineTgFilter 2.2s ease-in-out infinite;
  pointer-events: none;
  border-radius: 20px;
}

@keyframes shineTgFilter {
  0% {
    left: -60%;
  }
  100% {
    left: 120%;
  }
}

.tg-block-filter:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.podcategory-block-container {
  display: flex;
}

.block-description-podcategory {
  margin-left: 278px;
}
.top-line {
  margin-top: 10px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.top-line p {
  font-size: 18px;
  color: #222222;
}

.po-cene-sort {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-left: 40px;
}

.po-cene-sort img {
  margin-left: 7px;
  margin-top: 2px;
}

.podcategory-flexblock {
  margin-right: 40px;
}

.podcategory-products {
  width: 100%;
  box-sizing: border-box;
}

.product-value p {
  font-size: 18px;
  color: #666666;
}

.top-line-left {
  display: flex;
}

.podcategory-card {
  position: relative;
  width: 310px;
  height: auto;
  min-height: 364px;
  padding: 15px;
  border: 1px solid #ff09f5;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  align-items: center;
  text-align: center;
  overflow: hidden;
  max-width: 340px;
  margin: 0 auto;
  cursor: pointer;
}


.podcategory-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-18deg);
  transition: all 0.3s ease-in-out;
}


.podcategory-card:hover::before {
  animation: shinePodCategory 1.6s ease forwards;
}

@keyframes shinePodCategory {
  0% {
    left: -60%;
  }
  100% {
    left: 120%;
  }
}

.buy-card-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: auto;
  gap: 10px;
}

.podcategory-card:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.podcategory-card-img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 20px;
    margin-bottom: 10px;
}
.header-nav-left-side {
  display: flex;
  align-items: center;
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
    left: 100px;
  flex-direction: column;
  background-color: #f9f9f9;
  border: 1px solid #666666;
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 10;
}

.header-nav-left-side:hover .dropdown-content,
.dropdown-content:hover {
  display: flex;
}
.podrobnee-button {
  background: linear-gradient(to top, #ff09f5, #ff4747);
  border: 1px solid #ffba57;
  font-weight: 500;
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 48px;
  font-size: 22px;
  text-decoration: none;
}
.price-card-block {
  text-align: right;
  white-space: nowrap;
}
.card-price {
  font-size: 20px;
  color: #222222;
  font-weight: 600;
}
.products-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  padding: 20px 0px;
  box-sizing: border-box;
  min-height: 500px;
}

.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.product-card {
  padding: 20px;
  border: 2px solid #ff00d6;
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.product-stars {
  margin-top: 10px;
}

.product-name {
  font-weight: bold;
  margin-top: 10px;
}

.product-description {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.more-product {
  padding: 8px 20px;
  background: linear-gradient(to top, #ff09f5, #ff4747);
  color: white;
  border-radius: 25px;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
}

.price-product {
  font-weight: bold;
  font-size: 16px;
  color: black;
}
.more-product {
  padding: 8px 20px;
  background: linear-gradient(to top, #ff09f5, #ff4747);
  color: white;
  border-radius: 25px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
}
.price-product {
  font-weight: bold;
  font-size: 16px;
  color: black;
}
@media screen and (max-width: 1060px) {
  .products-block {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 730px) {
  .podcategory-card {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}

.paginator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.page-value {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 18px;
  color: #222222;
}

.page-value:not(:last-child) {
  margin-right: 5px;
}

.page-active {
  border: 1px solid #ff09f5;
}

.arrow-back,
.arrow-next {
  font-size: 18px;
  color: #222222;
  font-weight: 600;
}

.arrow-back {
  margin-right: 10px;
}

.arrow-next {
  margin-left: 10px;
}

@media screen and (max-width: 1835px) {
  .block-description-podcategory {
    margin-left: 50px;
  }
}

@media screen and (max-width: 1400px) {
  .block-description-podcategory {
    margin-left: 25px;
  }
}

@media screen and (max-width: 1319px) {
  .block-description-podcategory {
    margin-left: 0;
  }
}



.podcategory-three-card {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}
.podcategory-two-card {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.podcategory-two-card .podcategory-card:not(:last-child) {
  margin-right: 25px;
}

@media screen and (max-width: 1450px) {
}

@media screen and (max-width: 1350px) {
  .block-description-podcategory {
    text-align: left;
    margin-left: 25px;
  }
}

@media screen and (max-width: 1340px) {
  .block-description-podcategory {
    margin-left: 15px;
  }
}

@media screen and (max-width: 1060px) {
  .podcategory-two-card {
    flex-direction: column;
    margin-bottom: 0;
  }
  .podcategory-two-card .podcategory-card:not(:last-child) {
    margin-right: 0;
  }
}

@media screen and (max-width: 730px) {
  .podcategory-block-container {
    flex-direction: column;
  }
  .block-description-podcategory {
    white-space: normal;
  }
  .podcategory-flexblock {
    margin-right: 0;
  }
  .input-filter-box {
    flex-direction: column;
    justify-content: start;
    align-items: unset;
  }
  .input-filter:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.rotated {
  transform: rotate(180deg);
}

.podcategory-three-card.less-than-three {
  gap: 20px;
}

.podcategory-card{
  max-height: 364px;
}
.podcategory-card-img{
  margin-bottom: 5px;
}
.buy-card-block{
  margin-top: 7px;
}

@media screen and (max-width: 1480px){
  .products-block{
    grid-template-columns: repeat(2, 1fr);
  }
  .podcategory-products{
    width: unset;
  }
}

@media screen and (max-width: 1120px){
  .products-block{
    grid-template-columns: repeat(1, 1fr);
  }
  .podcategory-products{
    width: unset;
  }
}

@media screen and (max-width: 500px){
  .products-block{
    padding: 15px 0px;
  }
  .podcategory-products{
    padding: 0;
  }
}

@media (max-width: 1000px) {
  .paginator {
    overflow-x: auto;                
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;   
    /* убираем центрирование, чтобы элементы «стартовали» с левого края */
    justify-content: flex-start;     
    padding: 0 8px;                  
  }

  /* прячем стрелки */
  .paginator > .arrow-back,
  .paginator > .arrow-next {
    display: none;
  }

  /* элементы пагинации остаются фиксированного размера */
  .paginator > a {
    flex: 0 0 auto;
    scroll-snap-align: center;
    margin: 0 4px;
  }

  /* по желанию спрячем системный скроллбар */
  .paginator::-webkit-scrollbar { display: none; }
  .paginator { -ms-overflow-style: none; scrollbar-width: none; }
}
