/* 
single-page.css that is used for single-product.php of the woocommerce custom template
*/

#pages-breadcrumb {
  background-color: #f7f7f7;
  padding-top: 12px;
  padding-bottom: 12px;
}

#single-page-section {
  padding: 32px 0px 80px 0px;
  background-color: #f7f7f7;
}
@media screen and (min-width: 992px) {
  #single-page-section .container {
    padding: 0 24px;
  }
}

/* Container Styling */
#single-page-section .woocommerce-gallery {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

#single-page-section h1 {
  color: var(--Juoda, #000);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
  margin: 16px 0px;
  text-transform: initial;
}

#single-page-section .status {
  font-size: 14px;
  padding: 0px;
}

#single-page-section .excerpt {
  color: var(--Juoda, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  margin-bottom: 24px;
}

#single-page-section .product-sku {
  color: var(--Juoda, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 150% */
  gap: 4px;
  display: flex;
  margin-bottom: 24px;
  align-items: baseline;
}

#single-page-section .product-sku span {
  padding: 6px 16px 6px 0;
  font-weight: 400;
}

/* categories  */

#single-page-section .product-categories span {
  color: var(--Juoda, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
#single-page-section .product-categories a span {
  font-weight: 400;
}
#single-page-section .product-categories a:hover {
  color: var(--Yellow);
}
#single-page-section .product-categories a:hover span {
  color: var(--Yellow);
}
.product-categories .category-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.product-categories .category-links span {
  color: var(--Juoda, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 150% */
  border-radius: 6px;
  border: 1px solid var(--Platinum, #e0e0e0);
  text-decoration: none;
  padding: 6px 8px;
}

.product-categories {
  margin: 0 0 16px;
}

.product-categories:last-of-type {
  margin: 0;
}

.product-categories a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  #single-page-section .status {
    font-size: 12px;
  }
  #single-page-section .product-categories span {
    font-size: 12px;
    line-height: 16px;
  }
  .product-categories .category-links span {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 992px) {
  /* Apply only on large screens */
  .col-lg-6:last-child {
    padding-left: 128px; /* Adds a custom 128px padding between columns */
  }
}

/* product variation */

.product-variations {
  margin-top: 24px;
}

.product-variations span {
  color: var(--Juoda, #000);

  /* B 16 semi */
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 150% */
}

/* color swatch */
.product-variations .color-options {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.product-variations .color-swatch-wrapper {
  position: relative;
  padding: 4px;
  border: 1px solid #616161;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-variations .color-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.product-variations .color-swatch-secondary {
  width: 15px;
  height: 30px;
  border-radius: 0 15px 15px 0;
  position: absolute;
  left: 50%;
  transform: rotate(45deg);
  transform-origin: left;
}

.product-variations .color-swatch-wrapper.selected {
  border: 2px solid black;
}

.product-variations .color-swatch-wrapper .checkmark-svg {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.product-variations .color-swatch-wrapper.selected .checkmark-svg {
  display: block;
}

#color-tooltip {
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
}

/* price */
.product-price {
  font-size: 14px;
  line-height: 20px;
  color: #333;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.cart-btn {
  border: none;
}

@media screen and (max-width: 360px) {
  .cart-btn {
    min-width: auto !important;
    height: auto !important;
  }
  .cart {
    display: block !important;
  }

  #single-page-section form {
    display: block !important;
  }
}

.current-price {
  color: var(--Juoda, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.regular-price {
  color: #888;
  font-size: 14px;
  text-decoration: line-through; /* Cross out the original price */
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 150% */
}
.product-price .price ins {
  font-size: 14px;
  line-height: 20px;
}
.product-price .price {
  font-size: 14px;
  line-height: 20px;
}
.price-label {
  color: var(--Pilka-teksto, #5b5b5b);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  .product-variations span {
    font-size: 12px;
    line-height: 16px;
  }

  .product-price {
    font-size: 12px;
    line-height: 16px;
  }
  .product-price .price {
    font-size: 12px;
    line-height: 16px;
  }
  .product-price .price ins {
    font-size: 12px;
    line-height: 16px;
  }
  .current-price {
    font-size: 12px;
    line-height: 16px;
  }

  .regular-price {
    font-size: 12px;
    line-height: 16px;
  }

  .price-label {
    font-size: 12px;
    line-height: 16px;
  }
}

/* 


add to cart start



*/

#single-page-section form {
  margin-top: 24px;
  gap: 16px;
}

#single-page-section .quantity-selector {
  margin-right: 16px;
}

#single-page-section .quantity-selector input {
  padding: 12px;
}

#single-page-section .single_add_to_cart_button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffcb00;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  border: none;
  padding: 12px 20px;
  width: 234px; /* Match SVG width */
  height: 48px; /* Match SVG height */
  clip-path: path(
    'M11.4061 4.2424C12.1785 1.72136 14.5062 0 17.1429 0H227.886C231.92 0 234.805 3.90075 233.623 7.7576L222.594 43.7576C221.821 46.2786 219.494 48 216.857 48H6.11352C2.07972 48 -0.804919 44.0993 0.376715 40.2424L11.4061 4.2424Z'
  );
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#single-page-section .single_add_to_cart_button:hover {
  background-color: #ffe066;
}

/* Ensure text inside the button is centered */
#single-page-section .single_add_to_cart_button span {
  position: relative;
  z-index: 2;
}

/*


add to cart end 


*/

/*


description 



*/

#single-page-section .description {
  margin-top: 80px;
}

#single-page-section .description ul {
  list-style-type: square;
  padding-left: 20px;
  padding-right: 14px;
  font-size: 14px;
  line-height: 20px;
}

#single-page-section .description ul li::marker {
  color: #ffcd0a !important;
}

/* download section */
#single-page-section h4 {
  color: var(--Juoda, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin: 24px 0 12px;
}

.product-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-download {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 12px 20px;
  transition: all 0.3s ease;
  position: relative;
  padding: 12px 24px;
  border-radius: 9999px;
  background: var(--Yellow, #ffcb00);
  color: var(--Juoda, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  font-family: inherit;
}

.btn-download:hover {
  background: #ffe066;
  color: var(--Juoda, #000);
  font-family: inherit;
}

@media screen and (max-width: 768px) {
  .btn-download {
    font-size: 16px;
  }
  #single-page-section .description ul {
    font-size: 12px;
    line-height: 16px;
  }
}
@media screen and (min-width: 768px) {
  #single-page-section h4 {
    font-size: 16px;
    line-height: 24px;
  }
}

/* 

download end 


*/

/*


banner 



*/

#single-page-section .banner {
  position: relative; /* Make sure pseudo-elements position correctly */
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 56px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white; /* Ensure text remains readable */
}

/* 🔹 Overlay Effect */
#single-page-section .banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(
    0,
    0,
    0,
    0.5
  ); /* Adjust opacity (0 = transparent, 1 = solid) */
  z-index: 1;
}

#single-page-section .banner .col {
  position: relative;
  z-index: 2;
}

#single-page-section .banner h2 {
  color: var(--Balta, #fff);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 62.4px */
  text-transform: uppercase;
}

#single-page-section .banner p {
  color: var(--Balta, #fff);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  width: 52%;
}

/* button banner start */

.btn-primary-banner {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  width: 366px;
  height: 48px;
  overflow: hidden;
}

.btn-primary-banner .btn-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn-primary-banner .btn-text {
  position: relative;
  z-index: 2;
}

.btn-primary-banner:hover .btn-shape path {
  fill: #ffe066;
}

@media (max-width: 768px) {
  .btn-primary-banner {
    width: 327px; /* smaller width */
    height: 48px; /* smaller height */
  }
  .btn-primary-banner .btn-shape {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 374px) {
  .btn-primary-banner {
    width: auto; /* smaller width */
    height: 48px; /* smaller height */
    padding-left: 15px;
    padding-right: 15px;
  }
  .btn-primary-banner .btn-shape {
    width: 100%;
    height: 100%;
  }
}

/* button banner end */

@media (max-width: 768px) {
  #single-page-section .banner {
    padding: 96px 12px;
  }

  #single-page-section .banner h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 111.111% */
    margin-bottom: 24px;
  }

  #single-page-section .banner p {
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 32px;
  }
}

@media (max-width: 552px) {
}

/* banner end */

#related-products {
  background: var(--Platinum, #e0e0e0);
  padding-top: 96px;
  padding-bottom: 96px;
}

#related-products .btn-primary {
  padding-bottom: 24px;
}

#related-products h2 {
  padding-bottom: 24px;
}

#related-products .heading {
  margin-bottom: 64px;
}

/* slider  */

/* Ensure all product cards have the same height */

/* Best seller products start */

#new-products {
  overflow: hidden;
  background: var(--Platinum, #e0e0e0);
  padding: 96px 0px 96px 0px;
}

#new-products .heading {
  margin-bottom: 64px;
}

/* Ensure all product cards have the same height */
#new-products .new-products-slider .product {
  background-color: white;
  margin: 0px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
}

#new-products .new-products-slider .slick-track {
  display: flex !important;
}

#new-products .new-products-slider .slick-slide {
  display: flex !important;
  height: auto !important;
}

#new-products .new-products-slider .product-footer {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#new-products .new-products-slider .product a {
  text-decoration: none;
}

#new-products .new-products-slider .product h3 {
  color: var(--Juoda, #000);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-transform: none;
  text-align: left;
  margin: 0px;
  padding-left: 16px;
  padding-right: 16px;
}

#new-products .slick-prev,
#new-products .slick-next {
  color: #fff;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 48px; /* Set a fixed width */
  height: 48px; /* Set a fixed height */
  background-size: contain; /* Ensure the background image fits within the element */
  background-repeat: no-repeat; /* Prevent repeating the background image */
}

#new-products .slick-prev.slick-disabled,
#new-products .slick-next.slick-disabled {
  display: none !important;
}

#new-products .slick-prev {
  left: -15px;
}

#new-products .slick-prev::before {
  content: '';
}

#new-products .slick-next {
  right: -15px;
}

#new-products .slick-next::before {
  content: '';
}

#new-products .new-products-slider .product {
  position: relative;
  text-align: center;
  /* padding: 16px; */
  min-height: 490px; /* Ensure all slides are the same height */
  display: flex;
  flex-direction: column;
  border-radius: 6px;
}

#new-products .new-products-slider .product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

#new-products .new-products-slider .product .banner {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--Orange, #ff7a06);
  color: var(--Balta, #fff);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  font-size: 12px;
  z-index: 1;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 25px;
}

#new-products .new-products-slider .product .status {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--Juoda);
  margin-top: 24px;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 8px;
}

#new-products .new-products-slider .product .status .circle {
  width: 9px;
  height: 9px;
  background-color: #06ff4c;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

#new-products .new-products-slider .product .product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding-left: 16px;
  padding-right: 16px;
  margin-top: auto;
  margin-bottom: 24px;
}

#new-products .new-products-slider .product .price {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-align: left;
}

#new-products .new-products-slider .product .shopping-bag a{
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Yellow);
  transition: background-color 0.3s ease;
  border-radius: 50%;
}
#new-products .new-products-slider .product .shopping-bag:hover a{
  background: #ffe066;
}

#new-products .new-products-slider .product .shopping-bag img {
  aspect-ratio: unset;
  object-fit: unset;
  width: unset;
}

#new-products .new-products-slider-scroll {
  position: relative;
  width: 98% !important;
  height: 5px;
  background-color: #d9d9d9;
  margin-top: 24px;
  border-radius: 5px;
  overflow: hidden;
  margin: 24px auto auto auto;
}

#new-products .new-products-slider-scroll .scroll-thumb {
  position: absolute;
  height: 5px;
  width: 25%;
  background-color: #000;
  border-radius: 5px;
  transition: left 0.3s ease-out;
}

#new-products .btn-primary {
  display: none;
}

#single-page-section .cart .quantity-wrapper {
  padding: 12px;
}

@media screen and (max-width: 768px) {
  #new-products {
    background: #f7f7f7;
    padding: 96px 12px 96px 12px;
  }

  #new-products h2 {
    margin-bottom: 24px;
  }

  #new-products .btn-primary {
    display: block;
  }

  #new-products .new-products-slider-scroll {
    width: 94% !important;
  }
}

/* New products end */

/* mobile setup */

@media screen and (max-width: 768px) {
  #pages-breadcrumb {
    padding: 8px 12px;
  }

  #related-products {
    padding: 96px 12px 96px 12px;
  }

  #related-products .btn-primary {
    padding-bottom: 24px;
    display: inline-block;
  }

  #single-page-section {
    padding: 24px 0px 0px 0px !important;
  }

  #single-page-section .slick-main img {
    width: 100%;
    height: 327px;
  }

  #single-page-section .slick-main .slick-prev,
  #single-page-section .slick-main .slick-next {
    width: 31px;
    height: 31px;
  }

  #single-page-section .slick-main .slick-prev {
    left: 0px;
  }

  #single-page-section .slick-main .slick-next {
    right: 0px;
  }

  /* Center the thumbnail container */
  #single-page-section .slick-thumbs {
    gap: 2px;
  }

  #single-page-section h1 {
    font-size: 20px;
    line-height: 24px;
  }

  #single-page-section .excerpt { 
    font-size: 12px;
    line-height: 16px;
  }

  #single-page-section .product-sku {
    font-size: 12px;
    line-height: 16px;
  }
}

/* Attribute dropdown */
.product-attribute {
  margin: 24px 0;
}
.product-attribute-title {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: var(--Juoda);
}
.product-attribute img {
  min-width: 15px;
  width: 15px;
  transform: rotate(90deg);
}
.product-attribute-list {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 14px 12px;
  position: relative;
  border: 1px solid var(--Juoda);
  border-radius: 6px;
  font-size: 14px;
  line-height: 20px;
}
.product-attribute-list.initial{
  border-color: rgba(0,0,0, 0.4);
}
.product-attribute-list.open ul {
  display: block;
}
.product-attribute-list.open {
  border: 1px solid var(--Juoda);
}
.product-attribute-list.open img {
  transform: rotate(-90deg);
}
.product-attribute-list.initial span{
  color: var(--Juoda);
  opacity: 0.4;
}
.product-attribute-list ul {
  display: none;
  position: absolute;
  padding: 24px 16px;
  background: var(--Balta);
  left: 0;
  width: 100%;
  top: 100%;
  margin: 4px 0 0;
  border: 1px solid var(--Platinum, #e0e0e0);
  border-radius: 6px;
  list-style: none;
  z-index: 10;
}
.product-attribute-list li {
  margin: 0 0 16px;
  padding: 0 0 0 26px;
  position: relative;
}
.product-attribute-list li.selected:before {
  border-color: var(--Yellow);
}
.product-attribute-list li.selected:after {
  background: var(--Yellow);
}
.product-attribute-list li:before, .product-attribute-list li:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 0;
}
.product-attribute-list li:before {
  border: 2px solid var(--Juoda);
  width: 20px;
  height: 20px;
  left: 0;
}
.product-attribute-list li:after {
  background: transparent;
  width: 10px;
  height: 10px;
  left: 5px;
  margin-top: 5px;
}
.product-attribute-list li:last-of-type {
  margin: 0;
}

.product-info {
  display: flex;
  flex-flow: column;
  gap: 2rem;
}

.product-description h3{ 
  padding: 0 0 0.5rem;
  border-bottom: 1px solid #5B5B5B;
  margin: 0 0 1rem;
  color: var(--Juoda, #000);
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .product-info {
    display: flex;
    flex-flow: row;
    gap: 4rem;
  }
  .product-description {
    max-width: 358px;
    flex-shrink: 0;
    width: 100%;
  }

  .product-description h3 {
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
  }

  .product-dropdowns {
    width: 100%;
    max-width: 762px;
  }

}

/* Dropdown */

.product-dropdowns {
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
.product-dropdowns__item {
  padding: 0 0 1rem;
  border-bottom: 1px solid #E0E0E0;
}
.product-dropdowns__content {
  padding: 1rem 0 0;
  font-size: 0.75rem;
  line-height: 1rem;
}
.product-dropdowns__content p {
  font-size: inherit;
  line-height: inherit;
}
.product-dropdowns__content a {
  color: var(--Juoda, #000000);
  transition: color 0.3s ease;
}
.product-dropdowns__content a:hover {
  color: var(--Yellow, #FFCB00);
}
.product-dropdowns h3 {
  margin: 0;
}
.product-dropdowns button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  outline: none;
  background: none;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  gap: 1.5rem;
  color: var(--Juoda, #000000);
}
.product-dropdowns button svg {
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
}
.product-dropdowns button svg path {
  transition: stroke 0.3s ease;
  stroke: var(--Juoda, #000000);
}
.product-dropdowns button:hover svg path {
  stroke: var(--Yellow, #FFCB00);
}
.product-dropdowns button.collapsed svg {
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .product-dropdowns {
    gap: 1.5rem;
  }
  .product-dropdowns__item {
    padding: 0 0 1.5rem;
  }
  .product-dropdowns button {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .product-dropdowns__content {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

/* Swiper */

.gallery-main img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
}
.gallery-main-wrapper {
  position: relative;
}
.gallery-main-wrapper .gallery-prev, .gallery-main-wrapper .gallery-next {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 31px;
  height: 31px;
  border: 1px solid #ffcb00;
  transition: 0.3s ease background-color;
  background: #fff;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-main-wrapper .gallery-prev.swiper-button-lock, .gallery-main-wrapper .gallery-next.swiper-button-lock {
  display: none;
}
.gallery-main-wrapper .gallery-prev:hover, .gallery-main-wrapper .gallery-next:hover {
  background: #ffcb00;
}
.gallery-main-wrapper .gallery-next {
  right: 0;
}

.gallery-thumbs {
  margin-top: 16px;
}
.gallery-thumbs-wrapper {
  padding: 0 32px;
  position: relative;
}
.gallery-thumbs-wrapper .gallery-prev, .gallery-thumbs-wrapper .gallery-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-thumbs-wrapper .gallery-prev svg path, .gallery-thumbs-wrapper .gallery-next svg path {
  transition: fill 0.3s ease;
}
.gallery-thumbs-wrapper .gallery-prev.swiper-button-lock, .gallery-thumbs-wrapper .gallery-next.swiper-button-lock {
  display: none;
}
.gallery-thumbs-wrapper .gallery-prev:hover svg path, .gallery-thumbs-wrapper .gallery-next:hover svg path {
  fill: #ffcb00;
}
.gallery-thumbs-wrapper .gallery-prev {
  left: 0;
}
.gallery-thumbs-wrapper .gallery-next {
  right: 0;
}
.gallery-thumbs .swiper-slide {
  cursor: pointer;
  border: 3px solid transparent;
}
.gallery-thumbs .swiper-slide-thumb-active {
  border: 3px solid var(--Yellow, #ffcb00);
}

.swiper img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .gallery-main-wrapper .gallery-prev, .gallery-main-wrapper .gallery-next {
    width: 48px;
    height: 48px;
  }
  .gallery-main-wrapper .gallery-prev {
    left: -24px;
  }
  .gallery-main-wrapper .gallery-next {
    right: -24px;
  }
}