/*
Theme name: ObuvaME
Description: Custom Theme
Author: InfiniteWebAgency
*/

/*
	Source SCSS styles are located in resources/scss/
	The compiled bundle is saved to `dist/index.${fingerprint}.css`
	(dist/manifest.json provides the exact path mapping).

	The DEVELOPMENT.md file contains instructions how to get the build
	process up & running.

	If you need to make a quick fix, feel free to add CSS
	below this comment -- it's loaded after the compiled bundle.
*/

.product-app:hover .product__image img:only-child {
  scale: 1 !important;
}

.product__subtitle {
  font-weight: 700;
}

.section {
  margin-block: 1.6rem;
}

.section--accent {
  padding-block: 4rem;
  background-color: #b30f0f;
  color: white;
  margin-top: 0;
}
.hero-gallery {
  margin-top: 4rem;
}

.woocommerce button.button.button.button.button {
  background-color: #b30f0f;
  border-color: #b30f0f;
}

.logo {
  width: 11rem;
}

@media (max-width: 1023px) {
  .logo {
    width: 8rem;
  }

  .header .header__main {
    padding-block: 0;
  }
}

.logo > svg {
  height: auto;
}

.woocommerce:has(form.checkout) .woocommerce-form-coupon-toggle {
  display: none;
}

.slider__slide {
  height: auto;
}

/* FAQ Section Styles */
.product-faq {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.product-faq__items {
  max-width: 800px;
  margin: 0 auto;
}

.product-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: inherit;
}

.product-faq__question:hover {
  color: #b30f0f;
}

.product-faq__icon {
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.product-faq__question[aria-expanded="true"] .product-faq__icon {
  transform: rotate(45deg);
}

.product-faq__answer {
  padding-bottom: 1.5rem;
  line-height: 1.6;
}

.product-app .list-boxes {
  display: none;
}

.woocommerce
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered,
.woocommerce
  form.checkout
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 2.4rem;
}

body:not(.woocommerce-block-theme-has-button-styles)
  .wc-block-components-button:not(.is-link) {
  background-color: black;
  color: white;
  text-decoration: none;
}

.woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 {
  display: none;
}

.header .header__column {
  gap: 5rem;
}

.nav-utilities ul {
  flex-wrap: unset;
}

.wc-block-components-shipping-address {
  display: none !important;
}

/* Viber Sticky Button */
.viber-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.viber-sticky__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #665cac 0%, #7c72d2 100%);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(102, 92, 172, 0.4);
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.viber-sticky__button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(102, 92, 172, 0.6);
  color: white;
  text-decoration: none;
}

.viber-sticky__button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 92, 172, 0.3);
}

.viber-sticky__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.viber-sticky__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.viber-sticky__text {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #665cac;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.viber-sticky__text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid #665cac;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.viber-sticky__button:hover .viber-sticky__text {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .viber-sticky {
    bottom: 15px;
    right: 15px;
  }

  .viber-sticky__button {
    width: 50px;
    height: 50px;
  }

  .viber-sticky__icon {
    width: 24px;
    height: 24px;
  }

  .viber-sticky__text {
    display: none;
  }
}

/* Animation for entrance */
@keyframes vibePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(102, 92, 172, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(102, 92, 172, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(102, 92, 172, 0);
  }
}

.viber-sticky__button {
  animation: vibePulse 2s infinite;
}

/* Smooth transitions for hide/show */
.viber-sticky {
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
/*Testimonials*/
.testimonial__image{
	aspect-ratio: 1 / 1;
	width: 100%;
	max-width: 300px;
}

/*Home search*/
.vehicle-search__form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.vehicle-search__form > span{
	min-width: 33%;
}
.vehicle-search__form > span.select2-container{
	z-index: 1 !important;
}
.section--vehicle-search {
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: #fff;
	background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.4);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 0;
}
.vehicle-search__note {
  text-align: center;
  margin-top: 10px;
}
.vehicle-search .select2-container--default .select2-selection--single, .vehicle-search .select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.vehicle-search .select2-container--default.select2-container--disabled .select2-selection__placeholder{
	opacity: 0.6;
}
.vehicle-search .select2-container--default.select2-container--disabled .select2-selection__arrow{
	display: none;
}
.vehicle-search .select2-container--default .select2-selection--single .select2-selection__placeholder{
	color: #fff;
	font-size: 20px;
}
.vehicle-search .select2-container .select2-selection--single,.vehicle-search .select2-container--default .select2-selection--single .select2-selection__arrow{
	height: 52px;
}
.vehicle-search .select2-container--default .select2-selection--single .select2-selection__rendered{
	line-height: 52px;
	padding-left: 16px;
	padding-right: 32px;
	color: #fff;
	font-size: 20px;
}
.vehicle-search .select2-container--default .select2-selection--single .select2-selection__arrow{
	width: 32px;
}
.vehicle-search .select2-container--default .select2-selection--single .select2-selection__arrow b{
	border-color: #fff transparent transparent transparent;
}
.select2-container--default .select2-search--dropdown .select2-search__field{
	line-height: 30px !important;
	font-size: 17px !important;
}
.select2-container--default .select2-results > .select2-results__options{
	padding: 5px !important;
}
.select2-results__option{
	padding: 10px 6px !important
}
.select2-container--default .select2-results__option--highlighted[aria-selected]{
	background-color: #B51200 !important;
}
.select2-dropdown{
	background-color: #F5F5F5 !important;
}
@media(max-width:500px){
	.vehicle-search__form {
		flex-direction: column;
		align-items: center;
	}
	.vehicle-search__form > span{
		min-width: 95%;
	}
}
/*Brand category filters*/
.category__filters{
  background: #f5f5f5;
  margin-bottom: 4.8rem;
  padding: 15px 0 0 0;
  border: 1px solid #d0d0d0;
}
.category__filters .bapf_sfilter {
  margin-bottom: 0;
}
.category__filters h3 {
  font-size: 14px;
  margin-left: 15px;
  margin-bottom: 10px;
}
.category__filters .berocket_single_filter_widget ul {
  font-size: 14px;
	overflow-x: auto;
  	overscroll-behavior-inline: contain;
  	flex-wrap: nowrap;
	padding-bottom:15px;
	padding-left: 15px !important;
}
.category__filters .berocket_single_filter_widget .bapf-clean-rounded li label{
	font-weight: 400;
	text-wrap: nowrap;
	background-color: #fff;
}
.category__filters .berocket_single_filter_widget .bapf-clean-rounded li label::after{
	content:none;
}
.category__filters .berocket_single_filter_widget .bapf-clean-rounded li.checked label::before{
	height: 6px;
	border-radius: 0;
	border-top: 0;
	border-right: 0;
}
.berocket_single_filter_widget .bapf-clean-rounded li:not(.checked) label::before{
	transform:none;
	border: none;
}
body.tax-marka ul.products.columns-4{
	gap: 2.4rem;
}
/*Cart*/
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-price__regular{
	width: 100%;
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices .price{
	flex-wrap: wrap;
}