/* ====================================
   PIXELPERFECT OVERRIDES - Figma -> Live
   Theme: somyh | Ovanap/Perkutelefona
   Figma File: gI6ZiXWdc2tQ4qqVEip2rI
   ==================================== */

a, button { 
  -webkit-tap-highlight-color:transparent; 
  -webkit-touch-callout:none; 
  outline:none; 
}
:active, :hover, :focus, img, button, div, span, ul, li {
  outline:0 !important;
  outline-offset:0 !important;
  -webkit-tap-highlight-color:transparent;
}

/* ======== NEW 2-ROW HEADER ======== */

/* Row 1: Logo + Search + Phone */
.header-row-1 {
  background: #fff;
  padding: 16px 0 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

.header-row-1.scrolled {
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header-row-1-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.header-row-1 .logo {
  flex-shrink: 0;
}

.header-row-1 .logo img {
  height: 39px;
  width: auto;
}

/* Search bar - Figma: 479x48, r:60, border #e8e8e8 */
.header-search {
  flex: 1;
  max-width: 479px;
}

.header-search-form {
  display: flex;
  align-items: center;
  border: 1px solid #e8e8e8;
  border-radius: 60px;
  padding: 4px 8px 4px 19px;
  background: #fff;
  height: 48px;
  transition: border-color 0.2s ease;
}

.header-search-form:focus-within {
  border-color: #f26739;
}

.header-search-btn {
  background: none;
  border: none;
  padding: 13px 11px 7px 11px;
  cursor: pointer;
  flex-shrink: 0;
}

.header-search-btn img {
  width: 20px;
  height: 20px;
  opacity: 1;
}

.header-search-input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  background: transparent;
}

.header-search-input::placeholder {
  color: #77878F;
  opacity: 1;
}

/* Phone - Figma: icon + number */
.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.header-phone-icon {
  width: 28px;
  height: 28px;
  background: #f26739;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-phone-icon img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
}

.header-phone-number {
  font-size: 16px;
  font-weight: 500;
  color: #191c1e;
  white-space: nowrap;
}

/* Row 2: Navigation + Icons */
.header-row-2 {
  background: #fff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 80px;
  z-index: 999;
}

.header-row-2-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 83px;
}

#header-nav-desktop {
  display: flex;
  justify-content: center;
  width: calc(100% - 100px);
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0 20px;
  position: relative;
}

.header-nav-list::before, .header-nav-list::after, .header-nav-list > li.left-sep::before {
  content: '';
  position: absolute;
  top: 6px;
  width: 1px;
  height: 48px;
  background: #e8e8e8;
}

.header-nav-list::before {
  left: 0;
}

.header-nav-list::after {
  right: 0;
}

.header-nav-list > li.left-sep::before {
  left: 20px;
}

.header-nav-list > li {
  margin: 0;
  position: relative;
}

.header-nav-list > li > a {
  display: block;
  padding: 21px 20px 19px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  transition: color 0.2s ease;
  white-space: nowrap;
}

 .header-nav-list > li.left-sep > a {
  padding-left: 40px;
  margin-left: 20px;
 }

.header-nav-list > li > a:hover,
.header-nav-list > li.current-menu-item > a {
  color: #f26739;
}

.header-nav-list > li.menu-item-has-children > a:hover::after,
.header-nav-list > li.current-menu-item.menu-item-has-children > a span {
	/* background-image: url(../img/main/orange_arrow.svg); */
}

/* Bold for key items */
.header-nav-list li.bold > a, .mobile-nav-list li.bold > a {
  font-weight: 600;
}

.header-icons {
  display: flex;
  align-items: center;
}

.header-icons a {
  padding: 16px 19px 16px 21px;
  position: relative;
}

.header-icon-cart::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 1px;
  height: 48px;
  background: #e8e8e8;
}

.header-icon-search-mobile, .header-icons-mobile {
  display: none;
}

.header-icon-cart {
  position: relative;
  display: flex;
  align-items: center;
}

.header-icon-user img {
  width: 25px;
  height: 25px;
  position: relative;
  top: 2px;
}

.header-icon-cart img {
  width: 26px;
  height: 26px;
}

.header-cart-count {
  position: absolute;
  top: 13px;
  right: 12px;
  background: #f26739;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 5px;
  border-radius: 50px;
  line-height: 1;
  min-width: 16px;
  text-align: center;
}

/* Hamburger - hidden on desktop */
.header-icon-menu {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
}

.menu-btn-new span,
.menu-btn-new span::before,
.menu-btn-new span::after {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #000;
  display: block;
  left: 50%;
  margin-left: -12px;
  transition: all 0.3s ease;
}

.menu-btn-new span {
  top: 50%;
  margin-top: -1px;
}

.menu-btn-new span::before {
  content: '';
  top: -7px;
}

.menu-btn-new span::after {
  content: '';
  top: 7px;
}

.menu-btn-new.active-menu span {
  background: transparent;
}

.menu-btn-new.active-menu span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-btn-new.active-menu span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile nav dropdown */
.mobile-nav-dropdown {
  display: none;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: absolute;
  width: 100%;
  z-index: 998;
}

.mobile-nav-dropdown.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.mobile-nav-list li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-list ul.sub-menu > li {
  padding-left: 30px;
  position: relative;
}

.mobile-nav-list ul.sub-menu > li:first-child {
  border-top: 1px solid #f0f0f0;
}

.mobile-nav-list ul.sub-menu > li::before {
  content: '-';
  position: absolute;
  top: 14px;
  left: 12px;
}

.mobile-nav-list li:last-child {
  border-bottom: none;
}

.mobile-nav-list li a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.mobile-nav-list li.current-menu-item > a, .mobile-nav-list li.current_page_parent > a {
  color: #f26739;
  margin-right: 55px;
}

.mobile-nav-list li.menu-item-has-children > a span {
  margin: 0;
  top: 14px;
  right: 22px;
  border: 2px solid #000;
  padding: 17px 19px 17px 16px;
  z-index: 10;
  border-radius: 50%;
  color: #000;
  font-size: 12px;
  /*background-position: center calc(50% + 1px);*/
}

.mobile-nav-list li.menu-item-has-children > a span::after {
  transform: rotate(-45deg);
}

.mobile-nav-list ul.sub-menu {
  display: none;
}

.mobile-nav-list li.menu-item-has-children.submenu-open > ul.sub-menu { 
  display:block; 
}
.mobile-nav-list li.menu-item-has-children.submenu-open > a span::after { 
  transform:rotate(45deg); 
  position: relative;
  top: -2px;
  right: -2px;
}

/* Mobile search */
#mobile-search-wrapper {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #e8e8e8;
}

.mobile-search-form {
  display: flex;
  align-items: center;
  border: 1px solid #e8e8e8;
  border-radius: 60px;
  padding: 4px 4px 4px 16px;
  height: 44px;
}

.mobile-search-input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  background: transparent;
}

.mobile-search-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.mobile-search-btn img {
  width: 18px;
  height: 18px;
}

/* Hide old header elements */
.headre_top,
.menu_top,
.menu_mob,
.cart-search-wrapper,
.search_icon,
#search-form-wrapper {
  /* These are replaced by new header structure */
}

/* ======== CATEGORY CARDS ======== */
.category-cards-section {
  padding: 40px 0;
  background: #f5f5f5;
}

.category-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  justify-content: center;
}

.category-card {
  flex: 1 1 calc(20% - 17px);
  max-width: calc(20% - 17px);
  min-height: 140px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.category-card.noimg {
  justify-content: center;
}

.category-card:hover {
  background: #f26739;
  box-shadow: 1px 1px 20px rgba(242, 103, 57, 0.3);
  transform: translateY(-2px);
}

.category-card:hover h3 {
  color: #fff;
}

.category-card:hover .category-card-img img {
  transform: scale(1.05);
}

.category-card-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  z-index: 1;
}

.category-card h3 {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  text-align: center;
  transition: color 0.3s ease;
  margin: 0;
  line-height: 1.3;
}

.category-card-btn {
  width: 36px;
  height: 36px;
  background: #f26739;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.category-card:hover .category-card-btn {
  background: #fff;
}

.category-card:hover .category-card-btn svg path {
  fill: #f26739;
}

.category-card-img {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  max-width: 100%;
  margin-bottom: -20px;
}

.category-card-img img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.cards-slider-wrap {
  width: calc(100% + 20px);
  margin-left: -10px;
}

.cards-slider-wrap .category-cards-grid {
  max-height: 157px;
  overflow: hidden;
}

.cards-slider-wrap.pbl-loadet .category-cards-grid {
 max-height: 100%; 
}

.cards-slider-wrap .owl-carousel .owl-item {
  padding: 0 10px !important;
}

.cards-slider-wrap .owl-item .category-card {
  width: 100%;
  max-width: 100%;
  min-height: 157px;
}

.cards-slider-wrap .owl-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
}

.cards-slider-wrap .owl-prev,
.cards-slider-wrap .owl-next {
  width: 24px; 
  height: 24px;
  background-color: #f26739;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======== PRODUCTS BLOCKS ======== */
.products-block-section {
  padding: 42px 0;
  background: #f5f5f5;
}
.products-block-section h2.title-pbl {
  font-size: 30px;
  font-weight: 500;
  color: #000;
  margin-bottom: 40px;
}

/* ======== HERO SECTION ======== */
.top_info_block {
  background-color: #000;
  background-size: cover;
  background-position: center;
  padding: 0; /* padding: 40px 0 0 0; */
}

.slider_center h1 {
  font-size: 46px;
  font-weight: 500;
  color: #fff;
  line-height: 1.21;
  margin-top: 0;
}

.page-template-buy-overview .slider_center h1 {
  font-size: 48px;
  font-weight: 400;
}

.slider_center p {
  font-size: 20.2px;
  font-weight: 400;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 44px;
  line-height: 1.5;
}

.page-template-buy-overview .slider_center p {
  margin-top: 16px;
  margin-bottom: 43px;
}

/* Hero CTA Buttons - Figma: border-radius 100px */
.left_link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  border-radius: 100px;
  background: #F26739;
  color: #fff;
  padding: 19px 29px;
  border: 2px solid #F26739;
  transition: all 0.3s ease;
  margin: 0;
}

.left_link:hover {
  background: #fff;
  color: #F26739;
  border-color: #fff;
}

.right_link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  border-radius: 100px;
  padding: 19px 29px;
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
  transition: all 0.3s ease;
  margin: 0;
}

.right_link:hover {
  background: #F26739;
  color: #fff;
  border-color: #F26739;
}

.two_ink {
  display: flex;
  gap: 19px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======== PRODUCT CARDS ======== */
.big_shop {
  background: #f5f5f5;
  padding: 40px 0 60px 0;
}

.page-template-buy-overview .big_shop, .tax-telefonu_priedai_category .big_shop {
  padding: 20px 0 60px 0;
}

.produkt_show {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
  position: relative;
}

.produkt_show:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.produkt_show.outofstock {
  opacity: 0.5;
}

.category_produkt {
  font-size: 12px;
  color: #a3a3a3;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
}

.produkt_show h3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
  margin-bottom: 10px;
  height: auto;
  min-height: 42px;
}

.produkt_show button,
.click_prodat {
  background: #f26739;
  border-radius: 100px;
  border: none;
  padding: 15px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  float: right;
  cursor: pointer;
  transition: background 0.3s ease;
}

.produkt_show button:hover,
.click_prodat:hover {
  background: #000;
}

.produkt_show .kaina_nuo {
  font-size: 20px;
  line-height: 22.5px;
  margin: 0 -8px 0 0;
}

/* ======== INFO ======== */
.info_block {
  margin: 0;
  padding: 57px 0;
}

.info_block .info_block_wraper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.info_block_left {
  width: 50%;
}

.info_block_right {
  width: calc(47% - 3px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0 !important;
}

.info_block_left img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.info_block_right h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.15px;
  margin-bottom: 41px;
}

.list_block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 1px;
  position: relative;
  overflow: visible;
}

.list_block_number {
  width: 45px;
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f26739;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  float: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_block_text {
  width: auto;
  float: none;
  flex: 1;
}

.list_block_text.img_delivery {
  padding: 10px 0 0 66px;
}

.list_block_text.img_delivery img {
  margin-right: 30px;
}

.list_block_text h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 8px;
}

.list_block_text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #7E7A7A;
  padding-right: 7%;
}

/* ======== INFO VIDEO ======== */
.info_video {
  margin: 0;
  padding: 60px 0 61px 0;
}

.info_video .info_video_wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.info_video_left {
  width: 50%;
}

.info_video_right {
  width: calc(47% - 3px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0 !important;
}

.info_video_left img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.info_video .mejs-poster {
  z-index: 5;
}

.info_video .mejs-poster::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.2);
}

.info_video .mejs-overlay-play {
  z-index: 6;
}

.info_video .mejs-overlay-button {
    background: none !important;
    width: 60px;
    height: 60px;
}

.info_video .mejs-overlay-play .mejs-overlay-button::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background-color: #F26838;
    background-image: url(../img/main/youtube2.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.info_video .mejs-overlay-play .mejs-overlay-button:hover::before {
  background-color: #000;
}

.info_video .mejs-overlay-play {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info_video_right h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.15px;
  margin-bottom: 16px;
}

.info_video_right .info_video_subtitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 40px;
}

.list_block_wraper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.info_video_right .list_block {
  align-items: center;
}

.info_video_right .list_block_text h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}

.info_video_right .list_sandoriu {
  font-size: 14px;
  line-height: 1.4;
  color: #7E7A7A;

}

/* ======== BANNER ======== */
.slider_bloc_3 {
  padding: 20px 0 43px 0;
}

.slider_bloc_3_left,
.slider_bloc_3_right,
.info_block_left,
.info_block_right,
.subscr_left,
.subscr_right {
	width: 50%;
}

.slider_bloc_3_wraper {
  width: 100%;
  background: #fff;
  border: 1px solid #F26838;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider_bloc_3_left {
	padding: 110px 72px 109px 71px;
}

.slider_bloc_3_left span {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}

.slider_bloc_3_left h2 {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.25;
  letter-spacing: -0.15px;
	text-align: left;
	color: #000;
	margin-top: 19px;
}

.slider_bloc_3_left a {
  display: inline-block;
  background-color: #F26739;
  color: #fff;
  padding: 19px 31px 17px 30px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.slider_bloc_3_left a:hover {
  background-color: #000;
  color: #fff;
}

.slider_bloc_3_right img {
	padding-left: 33%
}

.slider_bloc_3_right img {
	display:none;
}
.slider_bloc_3_right img:first-child {
	display:block;
}

/* ======== TRADE-IN BANNER ======== */
.big_slider_2 {
  margin: 0;
  padding: 38px 0;
}

.big_slider_2_fon {
  background: #f26838;
  border-radius: 20px;
  background-size: cover;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.big_slider_2_center {
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 177px 20px 165px 20px;
  max-width: 465px;
}

.big_slider_2_left {
  display: flex;
  position: absolute;
  left: 0;
  bottom: 0;
}

.big_slider_2_right {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
}

.big_slider_2_center .bs2-subtitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 19px;
}

.big_slider_2_center .bs2-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.15px;
}

/* ======== TESTIMONIALS ======== */
.reiwe_block {
  margin: 0;
  padding: 41px 0 79px 0;
}

.reiwe_block_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  overflow: visible;
}

.reiwe_block_title h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.15px;
  float: none;
}

.info_google {
  display: flex;
  align-items: center;
  margin: -3px -2px 0 0;
}

.tov_google {
  float: none;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-right: 50px;
}

.start_rew_slider {
  background: #fff;
  padding: 24px 30px;
  border-radius: 20px;
}

.info_rev {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: visible;
}

.info_rev img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  float: none;
  margin-right: 0;
}

.name_stars {
  float: none;
}

.text_rev {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.4;
  color: #7E7A7A;
}

.slider_reviews_link {
  text-align: center;
  margin-top: 34px;
}

.slider_rew_noslider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.slider_rew_noslider  .start_rew_slider {
  width: calc(33.33% - 14px);
}

.slider_rew_noslider .start_rew_slider {
  padding: 40px 40px;
}

.slider_rew_noslider .info_rev img {
  width: 60px;
  height: 60px;
}

.slider_rew_noslider .info_rev {
  gap: 16px;
}

.slider_rew_noslider .name_stars h5 {
  margin-top: 5px;
}

.slider_rew_noslider .name_stars span {
  letter-spacing: -0.5px;
}

.slider_rew_noslider .name_stars .stars-text {
  margin-left: 16px;
  position: relative;
  top: -2px;
}

.slider_rew_noslider .text_rev {
  margin-top: 42px;
}

/* ======== NEWSLETTER ======== */
.full_subsc {
  background: #000;
  padding: 40px 0 29px 0;
}

.subscr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.subscr_left h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 10px;
}

.subscr_left p {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

.input_subscr {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 12px 20px;
  font-size: 12px;
  color: #000;
  background: #F5F5F5;
  height: 44px;
  max-width: 406px;
  width: 406px;
  margin-right: 20px;
}

.input_subscr::placeholder {
  color: #7E7A7A;
  opacity: 1;
}

.subscr .input_submin {
  height: 44px;
  background-color: #F26739;
  border: none;
  border-radius: 100px;
  padding: 10px 21px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscr .input_submin:hover {
  background-color: #fff;
  color: #F26739;
}

.subscr .wpcf7-spinner {
  position: absolute;
  right: 22px;
  margin-top: 12px;
}

/* ======== BUTTON LINK ======== */
.button-link {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
  background-color: #f26739;
  border-radius: 100px;
  padding: 17px 31px 15px 30px;
  transition: background-color 0.2s linear;
}

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


/* ======== NEWS ======== */
.news-block-section {
  padding: 38px 0 40px 0;
}

.nbs-block {
  padding: 80px 80px  99px 80px ;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #f26739;
  position: relative;
}

.nbs-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(242,103,57,0.2);
}

.nbs-content {
  padding: 41px 40px 40px 40px;
  background: #F5F5F5;
  border-radius: 20px;
  width: 100%;
  max-width: 451px;
  position: relative;
}

.nbs-subtitle {
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  color: #7E7A7A;
  margin-bottom: 19px;
}

.nbs-title {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: #000;
  margin-bottom: 40px;
}

/* ======== FOOTER ======== */
.full_footer {
  background: #f26838;
  padding: 39px 0;
}

.top_footer_full.full_flex {
  gap: 18px;
}

.top_footer_full.full_flex ul li {
  margin-bottom: 6px;
}

.top_footer_full h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: #000;
  margin-top: 8px;
  margin-bottom: 27px;
}

.footer_right_menu1 {
  margin-left: auto;
  margin-right: 6.5%;
}

.footer_right_menu2 {
  margin-right: 3.33%;
}

.footer_right_menu1 a,
.footer_right_menu2 a,
.footer_right_menu3 a,
.footer_right_menu4 a {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  transition: color 0.2s ease;
}

.footer_right_menu1 a:hover,
.footer_right_menu2 a:hover,
.footer_right_menu3 a:hover,
.footer_right_menu4 a:hover {
  color: #fff;
}

.logo-footer {
  margin-left: -8px;
}

.bottom_menu {
  background: #f26838;
  padding: 35px 0 42px 0;
}

.bottom_menu .rekviz,
.bottom_menu .copiryng {
  font-size: 12px;
  line-height: 2;
  color: #000;
  padding: 0 4px;
}

.mob-dlivery {
  display: none;
}


/* ======== MEGA MENU ======== */
header .big_menu {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.left_menu a {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
}

.right_menu li a {
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.right_menu li a:hover {
  background: #f26739;
  color: #fff;
}

/* ======== CATALOG ======== */

.catalogs_left .filter_left_wrapper {
  overflow: auto;
  padding: 12px;
  max-height: calc(100vh - 64px);
}

.catalogs_left #filter_left.fixed {
    position: fixed;
    top: 20px;
    width: var(--sticky-width);
    left: var(--sticky-left);
    z-index: 100;
}

.navigation_top .grid_list {
  display: flex;
  gap: 17px;
  margin-top: 3px;
}

#filter-toggle {
  background-color: #fff;
  border: 1px solid #C5C5C5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #7E7A7A;
  text-shadow: 0 0 1px #E8E8E8;
  transition: all .2s linear;
}

#filter-toggle:hover {
  border-color: #7E7A7A;
}

#filter-toggle.show-filter {
  justify-content: flex-start;
  background-color: rgba(240,110,40,0.08);
  border: 1px solid rgba(240,110,40,0);
  color: #F26838;
  min-width: 113px;
  transition: all .2s linear;
}

#filter-toggle.show-filter:hover {
  border-color: #F26838;
}

#filter-toggle.show-filter i {
  font-size: 15px;
}

#filter-toggle.show-filter i {
  color: #F26838;
}

#filter-toggle.show-filter {
  gap: 6px;
	padding: 9px 9px 9px 11px;
}

#filter-toggle i.filter-icon {
  width: 17px;
  height: 13px;
  background-image: url('../img/main/filtrai.svg');
  background-repeat: no-repeat;
  background-position: center center;
  font-style: normal;
}

#filter-toggle i.filter-times {
  font-size: 22px;
  line-height: 0;
  font-style: normal;
  transform: rotate(45deg);
  color: #F26838;
}

.search_produkt .search-field {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.select_catecory select {
  color: #7E7A7A;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
}

.catalogs_left-title {
  border-bottom: 1px solid #E8E8E8;
  padding: 0 0 23px 0;
  margin: 0 0 24px 0;
}

.catalogs_right .woocommerce-pagination {
  margin-top: 40px;
}

.navigation_top .wpfSelectedParameters::before, #filter_left .wpfSelectedParameters::before {
  content: 'Aktyvūs filtrai:';
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  padding-right: 11px;
}

.wpfFilterWrapper .wpfFilterContent {
  position: relative;
}

.wpfMainWrapper .irs--round .irs-handle, .wpfMainWrapper .irs--round .irs-handle.state_hover, .wpfMainWrapper .irs--round .irs-handle:hover {
  background-color: #f26838;
}

#filter-block .wpfMainWrapper .irs-from, #filter-block .wpfMainWrapper .irs-to {
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  padding: 0;
  background-color: transparent !important;
  visibility: visible !important;
}

#filter-block .wpfMainWrapper .irs-from {
  left: 0 !important;
}

#filter-block .wpfMainWrapper .irs-to {
  left: auto !important;
  right: 0 !important;
}

#filter-block .wpfMainWrapper .irs-single, #filter-block .wpfMainWrapper .irs-from::before, #filter-block .wpfMainWrapper .irs-to::before {
  display: none;
}

.wpfSelectedParametersClear {
  /*display: none !important;
  align-items: center;*/
}

.selected_filters .wpfSelectedParameters {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  padding: 12px 0px 8px 0px;
}

.wpfSelectedParameters .wpfSelectedParameter {
  background-color: transparent !important;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  position: relative;
  padding: 0;
  margin: 0 5px 0 0 !important;
}

.wpfSelectedParameter .wpfSelectedDelete {
  color: #fff;
  font-size: 0;
  width: 100%;;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.wpfSelectedParameter .wpfSelectedDelete::after {
  content: '+';
  display: block;
  transform: rotate(45deg);
  font-size: 20px;
  line-height: 1.4;
  color: #7E7A7A;
}

.wpfSelectedParameter .wpfSelectedTitle {
  padding-left: 0 !important;
}

#wpfBlock_1 .wpfFilterTitle {
  pointer-events: none;
}

#wpfBlock_1 .wpfFilterTitle .wpfTitleToggle {
  display: none !important;
}

.filter_count {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.selected_filters {
  flex: 1;
}

#products-count {
  display: none;
}

#products-count.show_products_count {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: #7E7A7A;
  padding: 12px 0px 8px 0px;
}

#filter_left .wpfSelectedParameters {
  display: none;
}

#filter_left .wpfSearchWrapper input {
  padding-left: 40px !important;
  padding-right: 5px !important;
}

#filter_left .wpfSearchWrapper button {
  margin: 0;
  left: 6px;
  top: 9px;
}

.quick_filter_chips {
  display: flex;
  gap: 4px;
  overflow: auto;
  padding: 0 0 11px 0;
  margin-bottom: -2px;
}

.quick_filter_chips .qfc-link {
  display: block;
  padding: 3px 7px 4px 7px;
  border-radius: 6px;
  border: 1px solid #E8E8E8;
  color: #7E7A7A;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  white-space: nowrap;
}

.quick_filter_chips .qfc-link:hover, .quick_filter_chips .qfc-link.qfc_active {
  background-color: rgba(242,104,56,0.08);
  color: #000;
}

#filter_left .wpfFilterWrapper {
  border-top: 1px solid #E8E8E8;
  /* padding: 0 0 22px 0; */
  padding: 26px 0 0 0;
}

#filter_left .wpfMainWrapper .wpfFilterWrapper:last-child {
  border-bottom: none;
  margin: 0;
}

#filter_left  .wpfFilterWrapper[data-filter-type] {
   padding: 26px 0 0 0;
}

#filter_left .wpfFilterWrapper .wpfCheckboxHier, #filter_left .wpfFilterWrapper[data-filter-type="wpfPrice"] .wpfFilterContent {
  padding: 0 0 10px 0;
}

#filter_left .wpfFilterTitle .wfpTitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
}

#filter_left .wpfFilterWrapper .wpfFilterTitle {
  margin-bottom: 8px;
}

#filter_left .wpfFilterWrapper.wpfFilterWrapper .wpfCheckbox label {
  width: 22px !important;
  height: 22px !important;
}

#filter_left .wpfFilterWrapper.wpfFilterWrapper[data-radio="0"] .wpfCheckbox label {
  width: 20px !important;
  height: 20px !important;
}

#filter_left .wpfFilterWrapper[data-radio="1"] .wpfCheckbox label::before, #filter_left .wpfFilterWrapper[data-radio="1"] .wpfCheckbox input[type="checkbox"]:checked + label::before,
#filter_left .wpfFilterWrapper[data-filter-type="wpfBrand"] .wpfCheckbox label::before, #filter_left .wpfFilterWrapper[data-filter-type="wpfBrand"] .wpfCheckbox input[type="checkbox"]:checked + label::before {
  border-radius: 50%;
}

#filter_left .wpfFilterWrapper[data-radio="0"] .wpfCheckbox label::before {
  border-radius: 4px;
}

#filter_left .wpfFilterWrapper[data-radio="1"] .wpfCheckbox label, #filter_left .wpfFilterWrapper[data-filter-type="wpfBrand"] .wpfCheckbox label {
  border-radius: 50%;
}

#filter_left  .wpfTitleToggle {
  top: 6px;
  right: 5px;
  width: 14px;
  height: 8px;
}

#filter_left .wpfTitleToggle::before {
  display: none;
}

#filter_left .wpfTitleToggle.fa-chevron-down {
  background-image: url(../img/main/filter-arrow-grey.svg);
  background-repeat: no-repeat;
}

#filter_left .wpfTitleToggle.fa-chevron-up {
  background-image: url(../img/main/filter-arrow-grey.svg);
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

#filter_left .wpfMainWrapper .wpfCount {
  font-size: 0.6em;
  color: #7E7A7A;
  margin-left: -22px;
  position: relative;
  top: -1px;
}

#filter_left .wpfCollapsible i {
  color: #7E7A7A;
  font-weight: 400;
  font-size: 0.6em;
  margin: 7px 7px 0 0;
}

#filter_left .wpfCheckboxHier li > ul {
  margin: 10px 0 15px 1.5em;
}

#filter_left .wpfShowMoreWrapper span, #filter_left .wpfShowFewerWrapper span {
  display: inline-block;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 400;
  color: #F26838;
  padding: 12px 0px 10px 0px;
  background-color: rgba(240,110,40,0.08);
  border: 1px solid rgba(240,110,40,0);
  padding: 7px 11px;
  border-radius: 20px;
  transition: all .2s linear;
}

#filter_left .wpfShowMoreWrapper span:hover, #filter_left .wpfShowFewerWrapper span:hover {
  border-color: #F26838;
}

#filter_left .wpfShowMoreWrapper span i, #filter_left .wpfShowFewerWrapper span i {
  color: #F26838;
  float: none;
  margin-left: 8px;
  font-size: 10px;
  width: 8px;
  height: 5px;
  position: relative;
  top: -1px;
}

#filter_left .wpfShowMoreWrapper span i::before, #filter_left .wpfShowFewerWrapper span i::before {
  display: none;
}

#filter_left .wpfShowMoreWrapper span i.fa-chevron-down {
  background-image: url(../img/main/filter-arrow-orange.svg);
  background-repeat: no-repeat;
}

#filter_left .wpfShowFewerWrapper span i.fa-chevron-up {
  background-image: url(../img/main/filter-arrow-orange.svg);
  background-repeat: no-repeat;
  transform: rotate(180deg);
  top: -2px;
}

.catalogs_right .woocommerce-info {
  border: none;
}


/* ======== CHECKOUT FORM ======== */
.woocommerce-checkout .optional {
    display: none;
}

.woocommerce-checkout .zaolov {
  display: none;
}

.woocommerce-checkout .woocommerce {
  padding: 39px 0 50px 0;
}

#customer_details {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  float: left;
  width: calc(56.4% - 10px);
}

#order_details {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  float: right;
  width: calc(43.6% - 10px);
}
.contakt-wrap,
.adress-wrap,
.col-comment,
.woocommerce-terms-and-conditions-wrapper,
.col-comments, 
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tr.cart_item,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table .cart-coupon-form,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table .cart-subtotal,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table .order-total {
  border-top: 1px solid #E8E8E8;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody, 
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody th, 
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot td, 
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot th,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table td {
  border: none;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table, 
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody, 
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot {
  display: flex;
  flex-direction: column;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table tr {
  display: flex;
  justify-content: space-between;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table th,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table td  {
  padding: 0;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table tr.cart_item {
  gap: 20px;
  padding: 38px 0 39px 0;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table .product-name-attrib-price {

}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table .product-remove {
  margin: 0 0 0 auto;
}

.chpr-thumb-block {
  width: 69px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chpr-thumb-block .checkout-product-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.woocommerce-checkout form.checkout h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  color: #000;
  margin: 0;
  padding: 0 0 31px 0;
}

.woocommerce-checkout form.checkout h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: #7E7A7A;
  margin: 0;
  padding: 24px 0 24px 0;
}

.checkout-remove-item:hover {
  opacity: 0.8;
}

.chpr-thumb-block .product-quantity {
  align-items: center;
  background: #fff;
  border: 2px solid color-mix(in srgb,currentColor 20%,transparent);
  border-radius: 1em;
  box-shadow: 0 0 0 2px #fff;
  color: #000;
  display: flex;
  justify-content: center;
  line-height: 1;
  min-height: 20px;
  min-width: 20px;
  padding: 0 .4em;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%,-50%);
  white-space: nowrap;
  z-index: 1;
  font-size: 11px;
  font-weight: 500;
}

.chpr-name-attrib-price-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chpr-name, .chpr-price, .woocommerce-checkout .woocommerce .woocommerce-Price-currencySymbol {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
}

.chpr-attrib .variation {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-end;
  row-gap: 2px;
  column-gap: 5px;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.25;
}

.chpr-attrib .variation dt {
  margin: 0;
  max-width: 100px;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  color: #7E7A7A;
}

.chpr-attrib .variation dt a {
  margin-left: -3px;
  text-indent: -99999px;
}

.chpr-attrib .variation dd {
  margin: 0;
}

.chpr-attrib .variation dd p {
  margin: 0;
  display: inline-block;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.25;
  color: #7E7A7A;
} 
.checkout-remove-item {
  display: inline-block;
  margin: 19px 4px;
}

.checkout_coupon {
    display: none;
}

#toggle-coupon:checked + label + .checkout_coupon {
    display: block;
}

.woocommerce-checkout ul.woocommerce-error {
  border: none;
  background-color: #FFE9E2;
}

.woocommerce-checkout ul.woocommerce-info {
  border: none;
  background-color: #FFF3DA;
}

.woocommerce-checkout ul.woocommerce-message {
  border: none;
  background-color: #E8F5EC;
  margin-top: 0 !important;
}

.woocommerce-checkout ul.woocommerce-error li, 
.woocommerce-checkout ul.woocommerce-info li, 
.woocommerce-checkout ul.woocommerce-message li {
  font-size: 13px;
  line-height: 1.50;
  font-weight: 400;
  color: #000;
  padding-left: 35px !important;
}

.woocommerce-checkout ul.woocommerce-error::before, 
.woocommerce-checkout ul.woocommerce-info::before, 
.woocommerce-checkout ul.woocommerce-message::before {
  top: 13px;
  left: 10px;
}

.woocommerce-checkout input.input-checkbox {
  display: none !important;
}

.woocommerce-checkout .cart-coupon-form {
  padding: 22px 0 31px 0;
}

.woocommerce-checkout .cart-coupon-form td {
  width: 100%;
}

.woocommerce-checkout .cart-coupon-form .cart-discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}

.woocommerce-checkout .cart-coupon-form .cart-discount .coupon-html {
  display: flex;
}

.woocommerce-checkout label.checkbox::before {
  content: "";
  display: inline-block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  line-height: 1.2;
  background-color: #fff;
  border: 1px solid #9A9A9A;
  border-radius: 4px;
  position: relative;
  top: 2px;
  margin-right: 7px;
  cursor: pointer;
}

.woocommerce-checkout #order_review label.checkbox::before {
  top: 4px;
  margin-right: 5px;
}

.woocommerce-checkout input[type="checkbox"]:checked + label.checkbox::before {
  background-image: url(../img/main/tick.svg);
  background-size: 13px 100%;
  background-repeat: no-repeat;
  background-position: 3px center;
  border: none;
  border: 1px solid #F26838;
}

.woocommerce-checkout .woocommerce-invalid label.checkbox::before {
  outline: 2px solid var(--wc-red);
  outline-offset: 2px;
}

.woocommerce-checkout .woocommerce-remove-coupon {
  width: 16px;
  height: 18px;
  display: inline-block;
  background-image: url(../img/main/remove.svg);
  text-indent: -99999px;
  position: relative;
  top: 3px;
  margin-left: 10px;
}

.woocommerce-checkout .woocommerce-remove-coupon:hover {
  opacity: 0.8;
}

.woocommerce-checkout .woocommerce table.shop_table tbody th, 
.woocommerce-checkout .woocommerce table.shop_table tfoot td, 
.woocommerce-checkout .woocommerce table.shop_table tfoot th {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.woocommerce-checkout .woocommerce table.shop_table tfoot .order-total th,
.woocommerce-checkout .woocommerce table.shop_table tfoot .order-total td,
.woocommerce-checkout .woocommerce .order-total .woocommerce-Price-currencySymbol {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 500;
}

.woocommerce-checkout .cart-coupon-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 15px 0;
}

.woocommerce-checkout #coupon_code {
  padding: 8px 19px;
  background-color: #F5F5F5;
  border: 1px solid #E8E8E8;
  border-radius: 30px;
  max-width: calc(100% - 200px);
  margin-left: auto;
}

.woocommerce-checkout .woocommerce table.shop_table button {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  background-color: #F26739;
  border: none;
  border-radius: 100px;
  padding: 9px 17px 9px 19px;
  transition: background-color 0.3s ease;
}

.woocommerce-checkout .woocommerce table.shop_table button:hover {
  background-color: #000;
}

.woocommerce-checkout .cart-subtotal {
  padding: 24px 0 24px 0;
}

.woocommerce-checkout .shipping-chosen {
  padding: 0 0 31px 0;
}

.woocommerce-checkout .order-total {
  padding: 24px 0 0 0;
}

.woocommerce-checkout .order-total strong {
  font-weight: 400;
}

.woocommerce-checkout .woocommerce table.shop_table {
  margin: 0 -1px 1px 0;
}

.woocommerce-checkout .woocommerce form .form-row span.required,
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper abbr.required {
  display: none;
}

.woocommerce-checkout .woocommerce form .form-row {
  padding: 0;
  margin: 0 0 1px 0;
}

.woocommerce-checkout .woocommerce form .form-row label {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
  letter-spacing: 0;
  margin: 0 0 8px 0;
}

.woocommerce-checkout .woocommerce form .form-row .input-text {
  font-size: 14px;
  background-color: #F5F5F5;
  border: 1px solid #E8E8E8;
  border-radius: 30px;
  padding: 8px 19px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 0 29px 0;
}

.woocommerce-checkout .woocommerce form .form-row-first, 
.woocommerce-checkout .woocommerce form .form-row-last, 
.woocommerce-checkout .woocommerce-page form .form-row-first, 
.woocommerce-checkout .woocommerce-page form .form-row-last,
.woocommerce-checkout .woocommerce form .form-row-wide {
  width: 100%;
}

.woocommerce-checkout .shipping-block {
  margin: 0 0 27px 0;
}

.woocommerce-checkout #shipping_method {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.woocommerce-checkout .woocommerce ul#shipping_method li {
  margin: 0;
}

.woocommerce-checkout .shipping_title, .woocommerce-checkout .payment_methods-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
  margin: 0 0 7px 0;
}

.woocommerce-checkout #shipping_method input[type="radio"],
.woocommerce-checkout #customer_details #payment ul.payment_methods li input[type="radio"] {
  display: none;
}

.woocommerce-checkout #shipping_method input[type="radio"] + label,
.woocommerce-checkout #customer_details #payment ul.payment_methods li input[type="radio"] + label {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  border: 1px solid #E8E8E8;
  border-radius: 24px;
  padding: 8px 13px 10px 13px;
  cursor: pointer;
}

.woocommerce-checkout #shipping_method input[type="radio"]:checked + label,
.woocommerce-checkout #customer_details #payment ul.payment_methods li input[type="radio"]:checked + label {
  color: #F26838;
  border: 1px solid #F26838;
}

.woocommerce-checkout .woocommerce ul#shipping_method .amount, 
.woocommerce-checkout .woocommerce #shipping_method .woocommerce-Price-currencySymbol {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

.woocommerce-checkout #shipping_method input[type="radio"]:checked + label span, .woocommerce-checkout #shipping_method input[type="radio"]:checked + label bdi {
  color: #F26838;
}

.woocommerce-checkout #customer_details #payment {
  background: none;
  border: none;
  border-radius: 0;
}

.woocommerce-checkout #customer_details #payment ul.payment_methods {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: none;
}

.woocommerce-checkout #customer_details #payment ul.payment_methods::before,
.woocommerce-checkout #customer_details #payment ul.payment_methods::after {
  display: none;
}

.woocommerce-checkout #customer_details #payment ul.payment_methods li {
   list-style: none;
}

.woocommerce-checkout .payment_methods-block {
  margin: 0 0 24px 0;
}

.woocommerce-checkout .woocommerce form .form-row textarea.input-text {
  border-radius: 20px;
  padding: 11px 19px 13px 19px;
}

.woocommerce-checkout #order_comments_field {
  margin: 0 0 30px 0;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  padding: 33px 0 24px 0;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text a {
  font-weight: 500;
  text-decoration: underline;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text a:hover {
  text-decoration: none;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text a:active, 
.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text a:focus {
  color: #000;
}

.woocommerce-checkout .woocommerce form .woocommerce-terms-and-conditions-wrapper .form-row label.checkbox {
  display: flex;
  gap: 5px;
}

.woocommerce-checkout .button_wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 42px;
}

.woocommerce-checkout .button_wrapper a {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #7E7A7A;
  margin-left: 7px;
}

.woocommerce-checkout .button_wrapper a span {
  font-size: 27px;
  line-height: 0.5;
  font-weight: 400;
  color: #7E7A7A;
  position: relative;
  top: 5px;
  margin-right: 7px;
}

.woocommerce-checkout .button_wrapper a:hover, .woocommerce-checkout .button_wrapper a:hover span {
  color: #000;
}

.woocommerce-checkout #place_order {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  background-color: #F26739 !important;
  border-radius: 100px;
  padding: 16px 30px;
  transition: background-color 0.3s ease;
}

.woocommerce-checkout #place_order:hover {
  background-color: #000 !important;
}

.woocommerce-checkout #place_order.unfilled-fields,
.woocommerce-checkout #place_order.unfilled-fields:hover {
  color: rgba(0,0,0,0.3);
  background-color: rgba(235,235,235,0.5) !important;
}

/* ======== PBL Slider ======== */
.home .owl-carousel .owl-item, .reiwe_block .owl-carousel .owl-item {
  padding: 20px 10px;
}

.pbl-slider-wrap {
  position: relative;
  width: calc(100% + 20px);
  left: -10px;
  margin: -20px 0;
  max-height: 398px;
  overflow: hidden;
  opacity: 0;
}

.pbl-slider-wrap.pbl-loadet {
  max-height: 100%;
  overflow: visible;
  opacity: 1;
}

.pbl-slider-wrap .owl-controls {
  position: absolute;
  top: -51px; 
  right: 62px;
}

.pbl-slider-wrap .owl-buttons {
  position: relative;
  width: 100%; 
  height: 36px;
}

.pbl-slider-wrap .owl-prev,
.pbl-slider-wrap .owl-next {
  position: absolute;
  top: 0;
  width: 24px; 
  height: 24px;
  background-color: #f26739;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pbl-slider-wrap .owl-prev,
.cards-slider-wrap .owl-prev {
  background-color: #D9D9D9;
}

.pbl-slider-wrap .clicked .owl-prev,
.cards-slider-wrap .clicked .owl-prev {
  background-color: #f26739;
}

.pbl-slider-wrap .owl-prev:hover,
.pbl-slider-wrap .owl-next:hover,
.cards-slider-wrap .owl-next:hover,
.cards-slider-wrap .owl-prev:hover {
  background-color: #f26739;
  opacity: 0.8;
}

.pbl-slider-wrap .owl-prev::after,
.pbl-slider-wrap .owl-next::after,
.cards-slider-wrap .owl-next::after,
.cards-slider-wrap .owl-prev::after {
  content: '';
  display: block;
}

.pbl-slider-wrap .owl-prev { 
  left: 0;
 }

.pbl-slider-wrap .owl-prev::after,
.cards-slider-wrap .owl-prev::after {
  border-top:    4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right:  5px solid #fff;
  margin-right:  2px;
}

.pbl-slider-wrap .owl-next { 
  left: 28px; 
}

.pbl-slider-wrap .owl-next::after,
.cards-slider-wrap .owl-next::after {
  border-top:    4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left:   5px solid #fff;
  margin-left:   2px;
}

.pbl-slider-wrap .owl-pagination,
.cards-slider-wrap .owl-pagination { 
  display: none !important; 
}

.pbl-slider-wrap .owl-item { 
  padding: 0 8px; 
}

.pbl-load-more {
  display: block;
  margin: 40px auto 0;
  padding: 14px 32px;
  background: #f26739;
  color: #fff;
  font-size: 15px; 
  font-weight: 500;
  border: none; 
  border-radius: 100px;
  cursor: pointer;
  transition: background-color .3s ease;
}
.pbl-load-more:hover { 
  background-color: #000;
}

.products-block-section.has-pbl-slider h2.title-pbl {
  padding-right: 80px;
}

/* ======== AUTOLOADING READ MORE ======== */
.fwp-loader {
    position: relative; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fwp-loader::after {
    content: "";
    width: 30px;
    height: 30px;
    border: 3px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: fwp-spin 0.8s linear infinite;
}

@keyframes fwp-spin {
    to {
        transform: rotate(360deg);
    }
}

#filter-toggle2 {
  display: none;
}


/* ======== PRODUCT ======== */
.full_produckt {
	margin-top: 39px;
	padding-bottom: 103px;
	display: flex;
	justify-content: space-between;
}

.produkt_left .produkt_left_wraper {
	position: sticky;
	top: 20px;
}

.produkt_left {
	width: calc(50% - 10px);
	position: relative;
}

.produkt_right {
	width: calc(50% - 10px);
}

.produkt_right {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 35px 2px 38px;
}

.product-gallery__main a {
  width: 100%;
  max-width: 628px;
  height: 516px;
  max-height: 100%;
  display: block;
  background-color: #fff;
  border-radius: 20px;
}

.product-gallery__main img {
  width: 100%;
  object-fit: contain;
}

.product-gallery__main img {
  width: 100%;
  object-fit: contain;
  max-height: 100%;
}

.produkt_left .wlp-badge {
  position: absolute;
  z-index: 10;
  top: 10px;
  left: 10px;
}

.product-gallery__main {
  margin-bottom: 20px;
}

.product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-gallery__thumbs a {
  width: 80px;
  height: 80px;
  display: block;
  background-color: #fff;
  border-radius: 20px;
}

.product-gallery__thumbs a img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.fslightbox-slide-number-container .fslightbox-flex-centered span, .fslightbox-slide-number-container .fslightbox-flex-centered div {
  color: #fff;
}

.iconic-woothumbs-all-images-wrap .iconic-woothumbs-images.slick-initialized .iconic-woothumbs-images__slide {
  height: 516px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.iconic-woothumbs-all-images-wrap .plyr__video-embed, .plyr--video, .plyr__video-wrapper {
  height: 100%;
  max-width: 100%;
}

.iconic-woothumbs-all-images-wrap .iconic-woothumbs-images__image,
.iconic-woothumbs-all-images-wrap video.iconic-woothumbs-plyr {
  max-height: 100%;
  object-fit: contain;
}

.iconic-woothumbs-all-images-wrap .plyr--video.plyr--playing .plyr__controls {
  background-color: rgba(0,0,0,0.6) !important;
}
.iconic-woothumbs-all-images-wrap .plyr--video.plyr--playing .plyr__controls {
  transform: translateY(0);
}

.iconic-woothumbs-thumbnails__image-wrapper,
.iconic-woothumbs-thumbnails__image-wrapper::before,
.iconic-woothumbs-thumbnails__image-wrapper::after {
  border-radius: 10px;
}

.iconic-woothumbs-all-images-wrap--thumbnails-below .iconic-woothumbs-thumbnails-wrap--sliding .slick-slide:hover {
  box-shadow: 1px 1px 20px rgba(30,20,13,0.15);
}

.iconic-woothumbs-thumbnails__image-wrapper {
  height: 85px;
  display: flex;
  justify-content: center;
  background: #fff;
}

.slick-slide .iconic-woothumbs-thumbnails__image-wrapper img {
  height: inherit;
  width: auto;
}

.iconic-woothumbs-all-images-wrap .iconic-woothumbs-images__arrow {
  display: none !important;
}

.iconic-woothumbs-all-images-wrap .iconic-woothumbs-fullscreen,
.iconic-woothumbs-all-images-wrap .plyr--video .plyr__controls .plyr__control[data-plyr="fullscreen"] {
  top: 10px;
  background: #F26739 !important;
  padding: 4px;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  transition: all .2s linear;
}

.iconic-woothumbs-all-images-wrap .iconic-woothumbs-fullscreen:hover,
.iconic-woothumbs-all-images-wrap .plyr--video .plyr__controls .plyr__control[data-plyr="fullscreen"]:hover {
  box-shadow: 1px 1px 20px rgba(30,20,13,0.15);
}

.iconic-woothumbs-all-images-wrap .plyr--video .plyr__controls .plyr__control[data-plyr="fullscreen"] {
  top: 0;
}

.iconic-woothumbs-all-images-wrap .iconic-woothumbs-fullscreen svg,
.iconic-woothumbs-all-images-wrap .plyr--video .plyr__controls .plyr__control svg {
  width: 20px;
  height: 20px;
}

.iconic-woothumbs-all-images-wrap .plyr--video .plyr__controls .plyr__control[data-plyr="mute"] svg {
  fill: #fff;
} 

.iconic-woothumbs-all-images-wrap .plyr--video {
  background: rgba(0,0,0,0.4) !important;
}

.iconic-woothumbs-all-images-wrap--thumbnails-below .iconic-woothumbs-thumbnails-wrap--sliding {
  margin-top: 20px !important;
}

.iconic-woothumbs-all-images-wrap .iconic-woothumbs-thumbnails__play-overlay svg {
  display: none;
}

.iconic-woothumbs-all-images-wrap .iconic-woothumbs-thumbnails__play-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: rgba(0,0,0,0.4) !important;
}

.iconic-woothumbs-all-images-wrap .iconic-woothumbs-thumbnails__slide--active 
.iconic-woothumbs-thumbnails__play-overlay {
  border-radius: 8px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}

.iconic-woothumbs-all-images-wrap .iconic-woothumbs-thumbnails__play-overlay::before {
  content: '';
    display: block;
    width: 60px;
    height: 60px;
    background-color: rgba(242,104,56,0.8) !important; 
    background-image: url(../img/main/youtube2.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.iconic-woothumbs-all-images-wrap .plyr__control.plyr__control--overlaid[data-plyr="play"] svg {
  display: none;
}

.iconic-woothumbs-all-images-wrap .plyr__control.plyr__control--overlaid[data-plyr="play"], 
.iconic-woothumbs-all-images-wrap .plyr__control.plyr__control--overlaid[data-plyr="play"]:hover {
    width: 60px;
    height: 60px;
    background-color: #F26838 !important;
    background-image: url(../img/main/youtube2.svg) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    margin: 0 auto;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.iconic-woothumbs-all-images-wrap .plyr__control.plyr__control--overlaid[data-plyr="play"]:hover {
  opacity: 0.8;
}

.produkt_right .woocommerce-product-details__category a {
  font-size: 16px;
  line-height: 1.5;
  color: #9A9A9A;
}

.produkt_right .woocommerce-product-details__category {
  margin: 0 0 7px 0;
}

.produkt_right .vi-wpvs-variation-wrap {
  gap:8px;
  margin: 7px 0;
}

.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-default,
.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-hover,
.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected,
.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-default,
.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-hover,
.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected {
  font-size: 14px;
  line-height: 1.4;
  box-shadow: none !important;
  border-radius: 24px !important;
  margin: 0;
  padding: 8px 13px !important;
  background: #fff !important;
  transition: all .2s linear;
}

.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-default,
.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-hover,
.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected {
  padding: 8px 13px 10px 13px !important;
}

.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-default,
.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-default {
  border: 1px solid #E8E8E8 !important;
}

.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-hover,
.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-hover {
  box-shadow: 1px 1px 20px rgba(30,20,13,0.15) !important;
}

.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-hover,
.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected,
.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-hover,
.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected {
  border: 1px solid #F26838 !important;
}

.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-default .vi-wpvs-option {
  color: #000 !important;
}

.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-hover .vi-wpvs-option,
.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected .vi-wpvs-option,
.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-hover .vi-wpvs-option,
.produkt_right .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected .vi-wpvs-option,
.produkt_right .vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-option-wrap-hover .vi-wpvs-color-label,
.produkt_right .vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-option-wrap-selected .vi-wpvs-color-label {
  color: #F26838 !important;
}

.produkt_right .vi-wpvs-variation-wrap[data-attribute="attribute_pa_bukle"] .vi-wpvs-option-wrap::before {
  width: 20px;
  height: 20px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.produkt_right .vi-wpvs-option-wrap[data-attribute_value="naujas"]::before,
.produkt_right .vi-wpvs-option-wrap[data-attribute_value="gera"]::before,
.produkt_right .vi-wpvs-option-wrap[data-attribute_value="veikiantis"]::before {
  background: #D9D9D9 !important;
  color: #fff !important;
}

.produkt_right  .vi-wpvs-variation-wrap[data-attribute="attribute_pa_bukle"] .vi-wpvs-option-wrap-selected::before {
  background: #D9D9D9 !important;
  color: #fff !important;
}

.produkt_right .vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-color-label {
  font-size: 14px;
  line-height: 1.4;
}

.produkt_right .vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-color-dot, .vi-wpvs-variation-wrap-vi_wpvs_color_design .vi-wpvs-option-color {
  width: 20px !important;
  height: 20px !important;
  margin: -4px 0 0 0;
  position: relative;
  top: 5px;
}

.produkt_right .bukle-more {
  margin-left: 12px;
}

.produkt_right .bukle-more-icon {
  font-size: 16px;
  line-height: 1.4;
  color: #7E7A7A;
}

.produkt_right .bukle-more .bukle-more-text {
  font-size: 10px;
  line-height: 1.5;
  color: #7E7A7A;
  text-decoration: underline;
}

.produkt_right .bukle-more:hover, .produkt_right .bukle-more:hover .bukle-more-text {
  text-decoration: none;
}

.variations_form th.label label[for="pa_bazine-garantija"] {
  display: block;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
  margin-top: 7px;
}

.single__btn-icons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 33px;
  background-color: #F5F5F5;
  padding: 24px 48px;
  margin: 32px 0;
}

.single__btn-icon {
  font-size: 15px;
  font-weight: 500;
  line-height: 18.75px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.single__btn-icon svg {
  height: 39px;
  display: block;
  margin-bottom: 20px;
}

.single__full-description {
  margin: 42px 0 0 0;
}

.single__full-description .sfd-title {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 16px;
}

.single__full-description p {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.09px;
  margin-bottom: 15px;
}

.single__full-description h4 {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 8px;
}

.single__full-description br {
  display: block;
  clear: both;
  margin: 4px 0;
}

.variation-item strong {
  display: none;
}

.ogranich_width {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}

.ogranich_width .ogranich_price {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.product_kaina {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
}

.product_kaina .kaina_nuo {
  font-size: 20px;
  line-height: 1.5;
  color: #000;
}

.product_variation {
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.product_kaina ins {
  text-decoration: none;
}

.product_kaina del {
  position: relative;
  text-decoration: none;
}

.product_kaina del + ins {
  margin: 0 -10px 0 0;
}

.custom-product-info del bdi, .custom-product-info del .amount, .woocommerce .custom-product-info del .woocommerce-Price-currencySymbol {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #7E7A7A;
}

.product_kaina del::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #7E7A7A;
}

.product_variation .variation-item::before {
  content: '⋅';
  display: inline-block;
  margin: 0 5px;
}

.product_variation .variation-item:first-child::before {
  display: none;
}

video.iconic-woothumbs-plyr {
  object-fit: contain !important;
}

.iconic-woothumbs-fullscreen-video-wrapper--tall,
.iconic-woothumbs-pswp .iconic-woothumbs-responsive-media {
  height: calc(100vh - 80px);
  width: 100%;
}
.iconic-woothumbs-fullscreen-video-wrapper--tall {
  width: calc(100% - 65px) !important;
}

/* ======== PRODUCT (HIDE SOME INFORMATION ON PAGE) ======== */
.produkt_right .single__to-sell, .produkt_right td.value .reset_variations {
  display: none;
}

/* ======== BUY PRODUCT ======== */
.sell-product__form #sell-product-file-list {
  margin: 13px 0;
}

.sell-product__form .file-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}

.sell-product__form .file-item span {
  font-size: 14px;
  line-height: 1.4;
  color: #7E7A7A;
}

.sell-product__form .file-item button {
  cursor: pointer;
  border: none;
  background: none;
  font-size: 16px;
  text-indent: -9999px;
  width: 12px;
  height: 14px;
  background-image: url(../img/main/remove-small.svg);
  background-repeat: no-repeat;
  background-position: center center;
}

details.sell-product__details {
  border-bottom: 1px solid #E8E8E8;
  padding: 32px 0 6px 0;
}

summary.sell-product__details-title {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
  color: #7E7A7A;
  list-style: none;
  cursor: pointer;
  position: relative;
  margin-bottom: 24px;
}

summary.sell-product__details-title::after {
  content: '';
  background-image: url(../img/main/filter-arrow-grey.svg);
  background-repeat: no-repeat;
  width: 14px;
  height: 8px;
  position: absolute;
  right: 5px;
  top: 8px;
}

details[open] summary.sell-product__details-title::after {
  transform: rotate(180deg);
}

.sell-product__label .bukle-more {
  margin-left: 13px;
}

.sell-product .bukle-more-icon {
  font-size: 16px;
  line-height: 1.4;
  color: #7E7A7A;
}

.sell-product .bukle-more .bukle-more-text {
  font-size: 10px;
  line-height: 1.5;
  color: #7E7A7A;
  text-decoration: underline;
}

.sell-product .bukle-more:hover, .sell-product .bukle-more:hover span {
  text-decoration: none;
}

.produkt_right .sell-product:hover, .produkt_right .sell-product:hover .bukle-more-text {
  text-decoration: none;
}

.files__container span {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
  color: #F26838;
  background-color: rgba(240,110,40,0.08);
  border: 1px solid rgba(240,110,40,0);
  border-radius: 20px;
  padding: 8px 14px 9px 14px;
  transition: all .2s linear;
}

.files__container span:hover {
  border-color: #F26838;
}

.sell-product__info-files {
  font-size: 12px;
  line-height: 1.4;
  color: #7E7A7A;
  padding: 4px 0;
}

.sell-product__wrap.sp-imei {
  margin: 34px 0; 
}

.sell-product__info-imei {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 17px;
}

.sell-product__info-imei span {
  font-size: 25px;
  line-height: 1;
  font-weight: 600;
  color: #F26838;
  position: relative;
  top: 4px;
  margin-right: 2px;
}

.sell-product__bottom-notice {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.4;
  color: #7E7A7A;
}

.sell-product__bottom-notice span {
  font-size: 25px;
  line-height: 1;
  font-weight: 600;
  color: #F26838;
  margin-right: 3px;
}

.incorrect-files-text {
  display: none;
}

.incorrect-files-text.incorrect-files {
  display: inline-block;
  font-size: 14px;
}

.sell-product__info-files.incorrect-files {
  color: #FF0000
}

.select__container.novalue {
  color: #7E7A7A;
}

.tax-telefonu_priedai_category .search_produkt .facetwp-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 18px;
  height: 18px;
  background-image: url(../img/main/search.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 0px;
  opacity: 1;
}

.tax-telefonu_priedai_category .search_produkt .facetwp-icon::before {
  display: none;
}

.cart__product-files {
  font-size: 11px;
  line-height: 1.4;
  color: #7E7A7A;
}

/* ======== MOBILE RESPONSIVE ======== */
@media (max-width: 1279px) {
  /* Header mobile */
  .header-row-1-inner {
    gap: 20px;
  }
  .header-row-1 .logo img {
    position: relative;
    top: 2px;
  }

  .header-search {
    display: none;
  }
  
  .header-phone {
    display: none;
  }

  .header-icons-mobile {
    display: block;
  }

  .header-icons-mobile .header-icon-cart {
    margin-right: 35px;
  }

  .header-icons-mobile .header-icon-cart::before {
    display: none;
  }

  .header-icons-mobile .header-icon-cart .header-cart-count {
    top: 3px;
    right: -4px;
    font-size: 12px;
    font-weight: 400;
    padding: 4px 7px 5px 6px;
    min-width: 21px;
  }
  
  .header-icon-search-mobile {
    display: flex;
    padding: 10px;
    margin-right: 10px;
  }
  
  .header-icon-menu {
    display: flex;
  }

  body .header-icons-mobile img {
    max-width: inherit;
  }

  .header-row-1 .logo {
    flex-shrink: inherit;
  }
  
  .header-nav {
    display: none;
  }
  
  .header-row-2 {
    display: none;
  }
  
  .header-row-1-inner {
    justify-content: space-between;
  }
  
  .header-icons {
    gap: 12px;
  }
  
  /* Move icons to row 1 on mobile */
  .header-row-1 .header-icons-mobile {
    display: flex;
  }

  /* Category cards */
  .category-cards-grid {
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: flex-start;
    overflow: auto;
  }
  
  .category-card {
    min-width: 239px;
    min-height: 157px;
  }

  .category-card-btn {
    width: 30px;
    height: 30px;
  }

  .category-card-btn svg {
    width: 10px;
    height: 10px;
  }

  /* Hero */
  .slider_center h1, .page-template-buy-overview .slider_center h1 {
    font-size: 32px;
  }
  
  .two_ink {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Sections */
  .info_block .conteiner {
    flex-direction: column;
  }
  
  .info_block_left,
  .info_block_right,
  .slider_bloc_3_left,
  .slider_bloc_3_right,
  .subscr_left,
  .subscr_right {
    width: 100%;
  }
  
  .info_block_left {
    margin-bottom: 30px;
  }
  
  .info_block_left img {
    margin-right: 0;
    max-width: 100%;
  }

  .slider_bloc_3 .conteiner {
    flex-direction: column;
    text-align: center;
  }
  
  .slider_bloc_3_left {
    text-align: center;
    padding: 60px 30px 49px 30px;
  }
  
  .slider_bloc_3_left h2 {
    font-size: 28px;
    text-align: center;
  }

  .subscr {
    flex-direction: column;
    text-align: center;
  }
  
  .subscr_left {
    float: none;
    margin-bottom: 20px;
    padding: 0;
  }

  .top_footer_full.full_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer_right_menu1, .footer_right_menu2 {
    margin-right: 0;
  }
  
  .bottom_menu .conteiner {
    display: flex;
    gap: 15px;
    align-items: end;
    text-align: left;
  }

  .info_block_left, .info_block_right {
    padding: 0;
    margin-bottom: 0;
    border-radius: 20px;
  }

  .big_slider_2_left, .big_slider_2_right {
    max-width: 32%;
  }

  .delivery img {
    margin-right: 10px;
  }

  .delivery img:last-child {
    margin-right: 0;
  }

  .ogranich_width, .sell-product__bottom-wrap, .sell-product__bottom-info {
    gap: 10px;
  }
}

@media (max-width: 992px) {
  .info_block .info_block_wraper {
    gap: 40px;
  }

  .big_slider_2_center {
    padding: 127px 20px 115px 20px;
  }

  .big_slider_2_left, .big_slider_2_right {
    max-width: 28%;
  }

  .slider_rew_noslider  .start_rew_slider {
    width: calc(50% - 10px);
  }

  .top_center { 
    margin-bottom: 0;  
    width: 100%;
    text-align: center;
  }

  .logo-footer {
    margin-left: 0;
  }

  .delivery {
    display: none;
  }

  .delivery.mob-dlivery {
    display: block;
    width: 100%;
     text-align: center;
  }

  .footer_right_menu1, .footer_right_menu2, .footer_right_menu3, .footer_right_menu4 {
    text-align: center;
    margin: 0 1%;
  }

  .footer_right_menu1 {
    margin-left: 0;
  }

  .delivery {
    margin-top: 10px;
  }

  .bottom_menu .conteiner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .copiryng, .sekite {
    margin: 0;
  }

  .copiryng {
    top: 0px;
  }

  .sekite {
    top: 3px;
  }

  .bottom_menu .conteiner {
    gap: 20px;
  }

  #filter_left .wpfSelectedParameters {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    border-bottom: 1px solid #E8E8E8;
    padding: 0 0 23px 0;
    margin: 0 0 24px 0;
  }

  .catalogs_left .filter_left_wrapper {
    max-height: 100%;
  }

  .navigation_top .grid_list {
    margin-left: auto;
  }

  .page-template-buy-overview .navigation_top .grid_list,
  .tax-telefonu_priedai_category .navigation_top .grid_list {
    margin-left: 0;
  }

   .info_video .info_video_wraper {
    gap: 30px;
  }

  .woocommerce-page form.checkout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  #customer_details {
    order: 2;
    width: 100%;
  }

  #order_details {
    order: 1;
    width: 100%;
  }

  .woocommerce-page form.checkout::before, .woocommerce-page form.checkout::after {
    display: none;
  }

  #filter-toggle2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 32px;
    background-color: rgba(240,110,40,0.08);
    border: 1px solid rgba(240,110,40,0);
    border-radius: 20px;
    float: right;
    position: relative;
    top: -3px;
  }

  #filter-toggle2 i.filter-times {
    font-size: 20px;
    line-height: 0;
    font-style: normal;
    transform: rotate(45deg);
    color: #F26838;
    cursor: pointer;
  }

  .full_produckt {
    flex-direction: column;
    gap: 10px;
  }

  .produkt_left, .produkt_right {
    width: 100%;
  }

  .produkt_left .produkt_left_wraper {
    position: static;
  }

  .sell-product .sell-product__wrapper {
    flex-direction: column;
    gap: 0;
  }

  .sell-product .sell-product__img-wrap a {
    height: auto;
  }

  .sell-product .sell-product__img-wrap,
  .sell-product__form {
    width: 100%;
  }

  .sell-product  .sell-product__img-wrap {
    position: relative;
    top: 0;
  }

  .tax-telefonu_priedai_category .big_shop .facetwp-search {
		min-width: 100%;
	}

	.tax-telefonu_priedai_category .big_shop .facetwp-filter {
		width: auto;
		margin: auto;
	}
}

@media (max-width: 768px) {
  .slider_center h1, .page-template-buy-overview .slider_center h1 {
    font-size: 29px;
  }

  .info_block_right h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .list_block_text p {
    padding-right: 0;
  }
  
  .slider_bloc_3_left h2 {
    font-size: 24px;
  }
  
  .reiwe_block_title h2 {
    font-size: 24px;
  }

  .info_block .conteiner {
    padding: 0;
  }

  .info_block_left {
    display: none;
  }

  .info_block_right {
    width: 100%;
    background-image: none !important;
    background-color: #F26838;
    border-radius: 0px;
    padding: 34px 24px;
  }

  .info_block_right .ibr_wraper {
    background-color: rgba(255,255,255,0.95);
    padding: 40px 24px 44px 24px;
    border-radius: 20px;
  }
   
  .mob_image {
    display: none;
    /* margin: -230px 0 -4px 0; */
  }

  .big_slider_2 {
    padding: 0 0 38px 0;
  }
  
  .big_slider_2 .conteiner {
    padding: 0;
  }

  .big_slider_2_center {
    padding: 170px 24px;
  }

  .big_slider_2_fon {
    border-radius: 0px;
  }

  .big_slider_2_left, .big_slider_2_right {
    display: none;
  }

  .top_footer_full.full_flex {
    gap: 20px;
  }

  .full_footer {
    padding: 39px 0 20px 0;
  }

  .footer_right_menu1, .footer_right_menu2, .footer_right_menu3, .footer_right_menu4 {
    margin: 0 5%;
  }

  .bottom_menu {
    padding: 0 0 30px 0;
  }

  .bottom_menu .conteiner {
    gap: 20px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .rekviz {
    order: 1;
  }

  .copiryng {
    order: 3;
  }

  .sekite {
    order: 2;
  }

  .info_video .info_video_wraper {
    flex-direction: column;
  }

  .info_video_left, .info_video_right {
    width: 100%;
  }

  .navigation_top_wrapper {
    flex-wrap: wrap;
    gap: 16px;
  }

  .navigation_top_wrapper #filter-toggle {
    order: 3;
  }

  .navigation_top_wrapper .search_produkt {
    order: 1;
    width: calc(100% - 115px);
  }

   .tax-telefonu_priedai_category .search_produkt {
    width: calc(100% - 115px);
   }

  .navigation_top_wrapper .grid_list {
    order: 2;
  }

  .navigation_top_wrapper .select_catecory {
    order: 4;
  }

  .slider_center {
    padding: 68px 0;
  }

  .two_ink {
    gap: 20px;
  }

  .news-block-section .conteiner {
    padding: 0;
  }

  .news-block-section .nbs-block, .news-block-section .nbs-block::before {
    border-radius: 0px;
  }
  
  .list_block {
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .list_block_text.img_delivery {
    padding: 0;
    text-align: center;
  }

  .list_block_text.img_delivery img {
    margin-right: 15px;
    margin-bottom: 10px;
  }

  .info_block {
    padding: 57px 0 0 0;
  }

  .pbl-load-more:hover {
    background: #f26739;
  }

  .iconic-woothumbs-all-images-wrap .iconic-woothumbs-images.slick-initialized .iconic-woothumbs-images__slide {
    max-height: 70vh;
  }

  .ogranich_width, .sell-product__bottom-wrap {
    justify-content: center;
  }

  .custom-product-info h2, .custom-product-info .product_variation {
    display: none;
  }

  .ogranich_width .ogranich_price, .sell-product__bottom-info {
    margin-left: 0;
  }

  .sell-product__bottom-title, .sell-product__bottom-notice {
    display: none;
  }
}

@media (max-width: 640px) {
  .slider_rew_noslider  .start_rew_slider {
    width: 100%;
  }

  .reiwe_block_title {
    justify-content: center;
    flex-direction: column;
  }

  .tov_google {
    align-items: center;
    margin-right: auto;
  }

  .subscr_right {
    padding: 0 29px;
  }

  .subscr_right p { 
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .input_subscr {
    margin-right: 0;
    width: 100%;
  }

  .filter_count {
    flex-direction: column;
    gap: 0;
  }

  #products-count.show_products_count {
    text-align: center;
    font-size: 11px;
  }

  .select_catecory {
    margin-left: auto;
  }

  .info_video {
    margin: 0;
    padding: 40px 0 10px 0;
  }

  .info_block_right h2, .list_block_text h4, .list_block_text p {
    text-align: center;
  }

  .info_video_right h2, .info_video_right .info_video_subtitle, .info_video_right .list_sandoriu {
    text-align: center;
  }

  .info_video_right .list_block {
    gap: 8px;
    flex-direction: column;
    justify-content: center;
  }

   .slider_bloc_3_left, .slider_bloc_3_right {
    padding: 20px 20px;
   }

  .select_catecory {
    width: calc(100% - 133px);
    max-width: 247px;
  }

  .nbs-title {
    font-size: 28px;
  }

  .big_slider_2_center .bs2-title {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .nbs-block {
    padding: 60px;
  }

  .nbs-content {
    text-align: center;
    max-width: 100%;
  }

  .nbs-block {
    padding: 40px;
  }

  .slider_bloc_3_wraper {
    flex-direction: column-reverse;
  }

   .slider_bloc_3_left, .slider_bloc_3_right {
    padding: 10px 20px;
  }

  .slider_bloc_3_right img {
    padding-left: 0;
  }

  .woocommerce-checkout form.checkout h2 {
    font-size: 24px;
    text-align: center;
  }

  .woocommerce table.shop_table.woocommerce-checkout-review-order-table tr.cart_item {
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .woocommerce table.shop_table.woocommerce-checkout-review-order-table .product-remove {
    margin: -7px 0 0 0;
    position: absolute;
    top: 0;
    right: 4px;
  }

  .chpr-price {
    text-align: center;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: auto;
    gap: 14px;
  }

  .woocommerce-checkout .button_wrapper {
    grid-template-columns: auto;
    gap: 20px;
  }

  .woocommerce-checkout .button_wrapper a {
    max-width: 160px;
    margin: 0 auto;
  }

  .news-block-section .nbs-block {
    padding: 24px;
  }

  .products-block-section.has-pbl-slider h2.title-pbl {
    padding-right: 0;
  }

  .pbl-slider-wrap {
    width: 100%;
    left: 0;
    margin: 0;
    max-height: 100%;
    overflow: visible;
    opacity: 1;
  }

  .knopochka_kypit {
    position: relative;
    font-size: 0;
  }

  .knopochka_kypit::before {
    content: '';
    display: block;
    width: 25px;
    height: 24px;
    background-image: url(../img/main/cart-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  .single__btn-icons {
    justify-content: space-around;
  }

  .single__btn-icons {
    gap: 10px;
    padding: 24px 18px;
  }
}

@media (max-width: 440px) {  
  .produkt_show {
    padding: 15px;
  }
  
  .produkt_show button {
    padding: 8px 20px;
    font-size: 11px;
  }

  .footer_right_menu1, .footer_right_menu2, .footer_right_menu3, .footer_right_menu4 {
    margin: 0;
    width: 100%;
  }

  .top_footer_full h3 {
    margin-bottom: 5px;
  }

  .woocommerce-checkout .cart-coupon-block {
    flex-wrap: wrap;
  }

  .woocommerce-checkout .cart-coupon-block label {
    width: 100%;
  }

  .woocommerce-checkout #coupon_code {
    max-width: calc(100% - 110px);
    margin-left: 0;
  }

  .header-icon-search-mobile {
    display: none; 
  }

  .single__btn-icon {
    font-size: 10px;
  }
}
