main.single-product {
  padding-top: calc(var(--top-bar-height) + var(--header-height));
}

/* Product background */

/* Breadcrumbs wrapper - Own row above product */
.product-breadcrumbs-wrapper {
  padding-top: var(--space-4);
  padding-bottom: var(--space-3);
}

/* Breadcrumbs styling */
.product-breadcrumbs {
  font-size: var(--text-xs);
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;

  a {
    color: var(--text-muted);
    text-decoration: none;

    &:hover {
      color: var(--primary);
    }
  }
}

/* Override large title on product page sections */
main.single-product
  .smort-product-slider.large-title
  .smort-product-slider-title {
  font-size: var(--text-3xl);
}

main.single-product .smort-product-slider-title {
  font-size: var(--text-3xl);
  color: var(--black);
}

main.single-product .stekhall-content-title {
  font-size: var(--text-3xl);
}

main.single-product .single-product-reviews-title {
  font-size: var(--text-3xl);
}

.product-columns-wrapper {
  /* padding-top: var(--header-height); */
  display: grid;
  grid-template-columns: 55% 45%;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notice {
  padding-bottom: 1rem !important;
}
.product-image-gallery {
  display: flex;
  flex-direction: column;
  max-height: 800px;
  overflow-y: scroll;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}

.product-image-gallery::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}
main.single-product {
  background-color: var(--background-color-2);
}
/* Product Swiper Slider */
.product-slider-wrapper {
  position: relative;
  max-width: 100%;
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.product-slider-wrapper .made-in-sweden-badge {
  background-color: var(--accent-color);
  border-radius: var(--border-radius-lg);
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;

  p {
    color: var(--white);
    margin: 0;
    padding: var(--space-1) var(--space-2);
    font-size: var(--text-sm);
  }
}

.product-slider-wrapper .discount-percentage-badge {
  position: absolute;
  top: 20px;
  left: 140px;
  z-index: 10;
  background-color: var(--error);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: bold;
}

/* Thumbnail Slider (LEFT SIDE - VERTICAL) */
.product-thumbs-slider {
  flex: 0 0 100px;
  order: 1;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;

  .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .swiper-slide {
    background-color: var(--white);
    width: 100px !important;
    height: 100px !important;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition:
      opacity 0.3s ease,
      border-color 0.3s ease;
    flex-shrink: 0;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    &:hover {
      opacity: 0.9;
    }

    &.swiper-slide-thumb-active {
      opacity: 1;
      border-color: var(--primary);
    }
  }
}

/* Fade overlay at bottom of thumbnails
.product-thumbs-fade {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  pointer-events: none;
  z-index: 5;
} */

/* Thumbnail navigation arrows */
.product-thumbs-button-prev,
.product-thumbs-button-next {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background-color: var(--white);
  border: 1px solid var(--color-border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

  svg {
    stroke: var(--primary);
  }

  &:hover {
    background-color: var(--primary);
    border-color: var(--primary);

    svg {
      stroke: var(--white);
    }
  }

  &.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
  }
}

.product-thumbs-button-prev {
  top: 10px;
}

.product-thumbs-button-next {
  bottom: 10px;
}

/* Main Product Slider (RIGHT SIDE) */
.product-main-slider {
  flex: 1;
  order: 2;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: var(--white);
  position: relative;
  min-height: 0;

  .swiper-slide {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;

    @media screen and (width <= 768px) {
      aspect-ratio: unset;
    }

    a {
      display: flex;
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: center;
      cursor: zoom-in;
      transition: opacity 0.3s ease;

      &:hover {
        opacity: 0.9;
      }
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
}

/* Main slider navigation arrows */
.product-main-button-prev,
.product-main-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;

  svg {
    stroke: var(--text);
  }

  &.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
  }
}

.product-main-button-prev {
  left: 20px;
}

.product-main-button-next {
  right: 20px;
}

@media screen and (width <= 992px) {
  .product-columns-wrapper {
    grid-template-columns: 1fr;
  }

  .product-slider-wrapper {
    flex-direction: column;
    gap: var(--space-3);
    width: 100%;
    max-width: 100%;
  }

  .product-thumbs-slider {
    flex: 0 0 auto;
    height: auto;
    order: 2;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;

    .swiper-wrapper {
      flex-direction: row;
      gap: 10px;
    }

    .swiper-slide {
      width: 80px !important;
      height: 80px !important;
      flex-shrink: 0;
    }
  }

  .product-main-slider {
    order: 1;
    width: 100%;
    max-width: 100%;

    .swiper-slide {
      width: 100%;

      img {
        width: 100%;
        height: auto;
        object-fit: cover;
      }
    }
  }

  .product-summary {
    padding: 0;

    .product_title {
      font-size: 32px;
    }

    .price {
      font-size: 28px;

      del {
        font-size: 20px;
      }
    }
  }
}

@media screen and (width <= 768px) {
  .product-slider-wrapper {
    width: 100%;
    padding: 0;
    flex-direction: column;
  }

  .product-main-slider {
    width: 100%;
    order: 1;

    .swiper-slide {
      width: 100% !important;
      height: auto !important;

      img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        display: block;
      }
    }
  }

  .product-thumbs-slider {
    width: 100%;
    padding: 0 var(--space-4);
    order: 2;
    height: 70px !important;
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    position: relative;
    -webkit-overflow-scrolling: touch;

    .swiper-wrapper {
      flex-direction: row !important;
      gap: 10px !important;
      display: flex !important;
    }

    .swiper-slide {
      width: 60px !important;
      height: 60px !important;
      flex-shrink: 0 !important;
    }
  }

  /* Hide thumbnail navigation arrows in mobile */
  .product-thumbs-button-prev,
  .product-thumbs-button-next {
    display: none !important;
  }

  .product-thumbs-fade {
    display: none !important;
  }

  .product-summary {
    .product_title {
      font-size: 28px;
    }

    .price {
      font-size: 24px;

      del {
        font-size: 18px;
      }
    }
  }
}

.product-summary {
  display: flex;
  flex-direction: column;
  padding: 0 var(--space-6) var(--space-4) var(--space-10);
  box-sizing: border-box;
  max-height: none;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  line-height: 1.8;
  gap: 0;

  form.cart button {
    width: 100%;
  }

  /* Checkmarks only on li elements */
  ul li {
    padding-left: var(--space-6);
    position: relative;
    margin-bottom: var(--space-2);
    list-style: none;

    &::before {
      content: "✓";
      font-size: 18px;
      color: var(--success);
      position: absolute;
      left: 0;
      top: 0;
      font-weight: 400;
    }
  }

  /* Remove checkmark from ul itself */
  ul {
    list-style: none;
    padding-left: 0;

    &::before {
      content: none;
    }
  }

  /* Product title spacing */
  .product_title {
    margin-bottom: var(--space-1);
    margin-top: 10px;
    line-height: 1.2;
    font-size: 35px;
    font-weight: 400;
    text-transform: none;
    font-family: var(--font-heading);
  }

  /* Product subtitle - same styling as loop */
  .product-subtitle {
    font-size: var(--text-xs);
    color: var(--secondary-color);
    margin: 0 0 var(--space-1) 0;
    font-weight: 400;
    line-height: 1.4;
  }

  /* Price spacing */
  .price {
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--border-light);
    margin-top: 0;
    font-size: var(--text-2xl);
    font-weight: 400;
    font-family: var(--font-heading);
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
    color: var(--text);
    text-transform: uppercase;

    del {
      font-size: var(--text-lg);
      color: var(--text-muted);
      font-weight: 400;
      text-decoration: line-through;
    }

    ins {
      text-decoration: none;
    }

    .woocommerce-Price-amount {
      color: var(--text);
      font-size: 1.7rem;
    }

    /* Sale price styling - smaller font for strikethrough price */
    del {
      opacity: 0.7;

      .woocommerce-Price-amount {
        font-size: 1.1rem;
        color: var(--text-muted);
      }
    }

    /* Make sure sale price (ins) is prominent */
    ins {
      .woocommerce-Price-amount {
        font-size: 1.7rem;
        color: var(--text);
      }
    }
  }

  /* Product description wrapper */
  .product-description-wrapper {
    margin-bottom: var(--space-3);
    margin-top: var(--space-2);
  }

  .product-description-content {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--text-muted);
    transition: max-height 0.3s ease;
    overflow: hidden;

    p {
      margin-bottom: var(--space-2);

      &:last-child {
        margin-bottom: 0;
      }
    }

    ul,
    ol {
      margin: var(--space-2) 0;
      padding-left: 0;

      li {
        margin-bottom: var(--space-1);
      }
    }

    &.collapsed {
      max-height: 150px;
    }
  }

  .product-description-toggle {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    margin-top: var(--space-4);

    background-color: transparent;
    color: var(--text);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    width: fit-content;
  }

  .product-description-arrow {
    transition: transform 0.3s ease;
  }

  .product-description-toggle.expanded .product-description-arrow {
    transform: rotate(180deg);
  }

  /* Cart form spacing */
  form.cart {
    margin: var(--space-3) 0;
    padding-top: var(--space-3);
    border-top: 1px solid var(--color-border-light);

    .quantity {
      margin-bottom: 0;
      display: inline-flex;
    }
  }

  form.cart:not(.variations_form) {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-direction: column;

    @media (width >= 768px) {
      flex-direction: row;
    }
  }

  form.cart:not(.variations_form) .quantity {
    margin-right: 0;
    flex-shrink: 0;
  }

  form.cart:not(.variations_form) .single_add_to_cart_button {
    width: auto;
    flex: 1;
  }

  .woocommerce-variation-add-to-cart {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    width: 100%;
  }

  .woocommerce-variation-add-to-cart .quantity {
    margin-right: 0;
    flex-shrink: 0;
  }

  .woocommerce-variation-add-to-cart .single_add_to_cart_button {
    width: auto;
    flex: 1;
  }

  /* Product delivery info */
  .product-delivery-info {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-3);
    padding: var(--space-3) 0;
    border-top: 1px solid var(--color-border-light);
    flex-wrap: wrap;
  }

  .product-delivery-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-color);

    @media (width <= 768px) {
      flex: 1 1 100%;
      font-size: var(--text-xs);
    }
  }

  .product-delivery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--success);
    flex-shrink: 0;
  }

  .product-service-icon {
    flex-shrink: 0;
    stroke: var(--text-color);
    stroke-width: 2;
  }

  /* USP Section */
  .product-usps {
    display: flex;
    flex-direction: row;
    gap: var(--space-3);
    margin-top: var(--space-2);
    flex-wrap: nowrap;
  }

  .product-usp-item {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-xs);
    white-space: nowrap;
  }

  .product-usp-icon {
    flex-shrink: 0;
    stroke: var(--success);
    stroke-width: 3;
    width: 16px;
    height: 16px;
  }

  @media (width <= 768px) {
    .product-usps {
      flex-wrap: wrap;
    }

    .product-usp-item {
      white-space: normal;
      font-size: 11px;
    }
  }

  /* Modern Review Link - Highlighted */
  .product-reviews-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5);
    margin-top: var(--space-4);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    color: var(--primary);
    font-size: var(--text-base);
    font-weight: 600;
    transition: all 0.3s ease;

    &:hover {
      background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
      border-color: var(--primary);
      transform: translateY(-2px);

      .product-reviews-link-arrow {
        transform: translateY(2px);
      }
    }

    .product-reviews-link-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: var(--space-3);

      @media (width <= 768px) {
        flex-direction: column;
        gap: var(--space-2);
        align-items: flex-start;
      }
    }

    .product-reviews-link-stars {
      display: flex;
      gap: var(--space-1);
      align-items: center;
    }

    .review-link-star {
      flex-shrink: 0;
    }

    .product-reviews-link-text {
      font-size: var(--text-sm);
      font-weight: 500;
      color: var(--text-color);
      white-space: nowrap;
    }

    .product-reviews-link-arrow {
      flex-shrink: 0;
      stroke: var(--primary);
      transition: transform 0.3s ease;
    }
  }

  /* Product meta (SKU, categories, tags) */
  .product_meta {
    margin-top: var(--space-2);
    padding-top: var(--space-3);

    span {
      display: block;
      margin-bottom: var(--space-1);
      line-height: 1.4;
    }
  }

  /* Rating */
  .woocommerce-product-rating {
    margin-bottom: var(--space-2);
    margin-top: 0;
  }

  /* General paragraph spacing */
  p {
    margin-bottom: var(--space-2);
    margin-top: 0;
    line-height: 1.8;
  }

  /* Headings in product summary */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top: var(--space-6);
    margin-bottom: var(--space-4);
    line-height: 1.4;
  }

  h1:first-child,
  h2:first-child,
  h3:first-child {
    margin-top: 0;
  }
}

/* Star Rating Styles */
.single-product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.single-product-stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.single-product-star {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.single-product-star.filled {
  fill: #ffd707;
  stroke: #ffd707;
}

.single-product-star.empty {
  fill: none;
  stroke: var(--black);
}

/* Product Description Accordion */
.product-description-wrapper {
  margin-bottom: var(--space-4);
}

/* Old accordion styles removed - now using direct content with "Läs mer" */

/* Product summary content - REMOVED OLD PRICE STYLING */

/* ========================================
   PRODUCT CONTACT PERSON SECTION
   ======================================== */
.product-contact-person {
  margin-top: var(--space-6);
  padding: var(--space-6);
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
  border-left: 2px solid var(--primary);
  display: flex;
  gap: var(--space-6);
  align-items: center;
}

.product-contact-person-content {
  flex: 1;
}

.product-contact-person-title {
  font-size: var(--text-2xl);
  margin-bottom: 0 !important;
  color: var(--text);
}

.product-contact-person-subtitle {
  font-size: var(--text-2xl);
  color: var(--text-muted);
  margin: 0 0 var(--space-4) 0;
}

.product-contact-person-details {
  display: flex;
  flex-direction: column;
}

.product-contact-person-label {
  font-size: var(--text-sm);
  font-weight: 800;

  letter-spacing: 0.05em;
  color: var(--text);
  margin: 0 !important;
}

.product-contact-person-info {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s ease;
}

.product-contact-person-info:hover {
  color: var(--primary);
}

.product-contact-person-info-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
}

.product-contact-person-info-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--primary);
}

.product-contact-person-image-wrapper {
  flex-shrink: 0;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
}

.product-contact-person-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .product-contact-person {
    flex-direction: column-reverse;
    text-align: center;
    padding: var(--space-5);
  }

  .product-contact-person-image-wrapper {
    width: 140px;
    height: 140px;
  }

  .product-contact-person-details {
    align-items: center;
  }

  .product-contact-person-info {
    flex-direction: column;
    gap: var(--space-1);
  }

  .product-contact-person-info-label {
    min-width: auto;
  }
}
/* ========================================
   QUANTITY SELECTOR - RETAIL STYLE
   ======================================== */
.woocommerce div.product form.cart div.quantity,
.quantity {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-right: var(--space-3);
}

/* Quantity label - show as "Antal:" */
.quantity label,
.woocommerce .quantity label {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  white-space: nowrap;
}

/* Quantity step buttons */
.qty-button,
.woocommerce .quantity .qty-button {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-border-light);
  border-radius: var(--border-radius-md);
  background: var(--white);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.qty-button:hover,
.woocommerce .quantity .qty-button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.qty-button:focus-visible,
.woocommerce .quantity .qty-button:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.12);
}

.qty-button:disabled,
.woocommerce .quantity .qty-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Quantity input field */
.qty,
.woocommerce .quantity .qty {
  width: 40px;
  height: 40px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  border: 2px solid var(--color-border-light);
  border-radius: var(--border-radius-md);
  background: var(--white);
  color: var(--text);
  padding: 0;
  transition: all 0.25s ease;

  display: inline-block;
}

.qty:hover,
.woocommerce .quantity .qty:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.qty:focus,
.woocommerce .quantity .qty:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.12);
  transform: translateY(-1px);
}

/* Remove spinner arrows */
.qty::-webkit-outer-spin-button,
.qty::-webkit-inner-spin-button,
.woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.qty,
.woocommerce .quantity .qty {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .woocommerce div.product form.cart div.quantity,
  .quantity {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: var(--space-3);
  }

  .qty,
  .woocommerce .quantity .qty {
    width: 80px;
    height: 50px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .quantity,
  .woocommerce div.product form.cart div.quantity {
    width: 100%;
  }

  .qty-button,
  .qty-minus,
  .qty-plus,
  .woocommerce .quantity .qty-button {
    flex: 1;
    width: auto;
    height: 48px;
    font-size: 1.375rem;
  }

  .qty,
  .woocommerce .quantity .qty {
    flex: 1;
    width: auto;
    height: 48px;
    font-size: 1.125rem;
  }
}

/* Meta wrapper - compact layout */
.product_meta-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3) 0;
}

/* Meta */
.product_meta {
  display: flex;
  padding: 0;
  gap: var(--space-1);
  flex-wrap: wrap;
  border: none;
  margin: 0;

  .product_meta-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
  }

  .product_meta-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
    white-space: nowrap;
  }

  .product_meta-inner {
    gap: var(--space-1);
    display: flex;
    flex-wrap: wrap;
  }
  .posted_in,
  .tagged_as {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1);
  }
  a {
    padding: 3px 10px;
    border-radius: var(--border-radius-full);
    display: block;
    text-decoration: none;
    font-size: var(--text-xs);
    transition: all 0.2s ease;
    background-color: var(--background-color-2);
    color: var(--primary);
    border: 1px solid var(--color-border-light);

    &:hover {
      background-color: var(--white);
      border-color: var(--primary);
    }
  }
}

/* SKU styling */
.sku_wrapper {
  display: inline-block;
  font-size: var(--text-xs);
  color: var(--gray-500);

  .sku {
    color: var(--gray-600);
  }
}
/* Grundläggande styling för desktop */
.product-columns-wrapper {
  display: flex;
  gap: 0px;

  @media (width <= 768px) {
    flex-direction: column;
  }
}

.product-image-gallery {
  position: sticky;
  top: 160px;
  flex: 0 0 55%; /* Galleri 60% */

  @media (width <= 768px) {
    position: static;
  }
}

@media (width <= 768px) {
  .product-summary {
    padding: 0;
  }
}

/* Stock and SKU wrapper */
.product-stock-sku-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-3) 0;

  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);

  p {
    margin: 0;
    font-size: var(--text-xs);
    display: flex;
    align-items: center;
  }

  .stock {
    font-weight: 500;
    color: var(--gray-700);
  }

  .sku-info {
    color: var(--gray-600);

    .sku-number {
      color: var(--primary);
      font-weight: 600;
      margin-left: 0.2rem;
    }
  }

  /* Separator between stock and SKU */
  .stock + .sku-info::before {
    content: "|";
    margin-right: var(--space-4);
    color: var(--gray-400);
  }

  @media (width <= 768px) {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);

    .stock + .sku-info::before {
      display: none;
    }
  }
}

/* Stock colors */
p.stock.in-stock:before,
p.stock.available-on-backorder::before {
  content: "";
  width: 15px;
  height: 15px;
  aspect-ratio: 1/1;
  background-color: var(--stock-dot-color, var(--success)) !important;
  display: inline-block;
  margin-right: 6px;
  border-radius: 50%;
}
p.stock.out-of-stock:before {
  content: "";
  width: 15px;
  height: 15px;
  aspect-ratio: 1/1;
  background-color: var(--stock-dot-color, var(--error)) !important;
  display: inline-block;
  margin-right: 6px;
  border-radius: 50%;
}

/* Stekhällar produktspecifikation område */
.stekhall-content-wrapper {
  padding-block: var(--space-8);
  background-color: var(--white);

  .stekhall-content-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }
  .stekhall-content-title {
    font-size: var(--text-2xl);
    margin: 0;
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border-light);
  }
}
.stekhall-content {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  white-space: nowrap;
  gap: var(--space-4);
  align-items: center;

  .stekhall-content-item {
    width: min-content;
    display: flex;
    flex-direction: column;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--border-radius-lg);
    background-color: #fff;
    max-height: min-content;

    .stekhall-content-item-title {
      font-size: var(--text-xl);
      letter-spacing: 0.05em;
      font-family: var(--font-body);
    }
    .stekhall-content-item-value {
      font-size: var(--text-md);
    }
  }

  @media (width <= 768px) {
    white-space: normal;
    flex-wrap: wrap;
    overflow-x: auto;

    .stekhall-content-item {
      flex: 1 1 calc(50% - var(--space-2));
      width: auto;
      min-width: 0;

      .stekhall-content-item-title {
        font-size: var(--text-base);
        white-space: normal;
        word-wrap: break-word;
      }
      .stekhall-content-item-value {
        font-size: var(--text-sm);
        white-space: normal;
        word-wrap: break-word;
      }
    }
  }
}

.single-product-mid-area-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-10);

  &:has(.youtube-video-wrapper):has(.upsell-products-wrapper) {
    position: relative;
    grid-template-columns: 2fr 1fr;
    & .youtube-video-wrapper {
      position: sticky;
      top: 160px;
      display: flex;
      flex-direction: column;
      height: fit-content;
    }
    @media (width <= 768px) {
      grid-template-columns: 1fr;
    }
  }
  @media (width <= 768px) {
    grid-template-columns: 1fr;
    & > *:first-child {
      order: 1;
    }
  }
}

/* Youtube video & popup */
.youtube-video-wrapper {
  .youtube-video-container {
    height: auto;
  }
  iframe {
    aspect-ratio: 16/9;
    width: 100%;
    max-width: 1080px;
    border-radius: var(--border-radius-lg);
  }
}

/* Upsell products */
.single-product .upsell-products .product {
  display: flex;
}
/* Mod plugin styles */
.cr-reviews-slider .cr-review-card {
  border-radius: var(--border-radius-lg);
}

.single-product-reviews-wrapper {
  padding: var(--space-10) 0;

  .single-product-reviews-title {
    font-size: var(--text-3xl);
    text-align: center;
    padding-bottom: var(--space-4);
    margin-bottom: var(--space-6);
  }

  .single-product-reviews-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);

    @media (width <= 992px) {
      grid-template-columns: repeat(2, 1fr);
    }

    @media (width <= 600px) {
      grid-template-columns: 1fr;
    }
  }

  .single-product-review-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-xl);
    padding: var(--space-5);
    transition: all 0.3s ease;

    &:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
      transform: translateY(-2px);
    }

    &.hidden-review {
      display: none;
    }
  }

  .single-product-review-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
  }

  .single-product-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: var(--text-lg);
    flex-shrink: 0;
  }

  .single-product-review-meta {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }

  .single-product-review-author {
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--text-color);
  }

  .single-product-review-date {
    font-size: var(--text-sm);
    color: var(--text-muted);
  }

  .single-product-review-rating {
    display: flex;
    gap: 2px;
    margin-left: auto;

    .star {
      font-size: var(--text-lg);
      color: var(--color-border-light);

      &.filled {
        color: #ffd707;
      }
    }
  }

  .single-product-review-content {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-color);
  }

  .single-product-review-product {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-4);
    padding: var(--space-3);
    background: var(--background-color-2);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;

    &:hover {
      background: var(--color-border-light);
    }
  }

  .single-product-review-product-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    flex-shrink: 0;
  }

  .single-product-review-product-name {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
  }

  .single-product-reviews-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin: var(--space-6) auto 0;
    padding: var(--space-3) var(--space-6);
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-3xl);
    color: var(--primary);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;

    &:hover {
      background: var(--primary);
      color: var(--white);

      svg {
        stroke: var(--white);
      }
    }

    svg {
      transition: transform 0.3s ease;
      stroke: var(--primary);
    }

    &[data-expanded="true"] {
      svg {
        transform: rotate(180deg);
      }

      .toggle-text::before {
        content: "Visa färre recensioner";
      }

      .toggle-text {
        font-size: 0;
      }
    }
  }

  .single-product-no-reviews {
    text-align: center;
    color: var(--text-muted);
    font-size: var(--text-base);
    padding: var(--space-8);
  }
}
section.smort-media-text {
  &:first-of-type {
    padding-top: 0;
  }
  &:last-of-type {
    padding-bottom: 0;
  }
}

/* Anpassningar för mobil */
@media (width <= 768px) {
  .product-columns-wrapper {
    flex-direction: column; /* Lägg under varandra */
    gap: 0;
  }

  .product-image-gallery,
  .product-summary {
    flex: 1 1 100%; /* Full bredd */
  }

  /* Dölj det vanliga galleriet i mobil */
  .gallery-grid,
  .main-image {
    display: none;
  }
}

/* Fade-in Effekt - Grundläggande styling */
.fade-in {
  opacity: 0; /* Start med att dölja sektionen */
  transform: translateY(20px); /* Flytta ner sektionen något */
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out; /* Tidsstyrd animation */
}

/* När sektionen är synlig */
.fade-in.show {
  opacity: 1; /* Full synlighet */
  transform: translateY(0); /* Flytta tillbaka till sin position */
}

/* Fade-effekt längst ner */
.fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  transition: opacity 0.3s ease-in-out;
}

@media (width <= 768px) {
  .product-summary {
    padding: 0;
    gap: var(--space-3);

    .product_title {
      font-size: var(--text-2xl);
      margin-top: 1rem !important;
    }

    .woocommerce-product-details__short-description {
      margin-bottom: var(--space-5);
      line-height: 1.85;

      > p:first-child {
        font-size: var(--text-base);
      }

      ul li {
        margin-bottom: var(--space-3);
      }
    }

    form.cart {
      margin: var(--space-5) 0;
    }

    .product_meta {
      margin-top: var(--space-5);
      padding-top: var(--space-4);
    }
  }

  .product-intro {
    font-size: var(--text-base);
  }

  .accordion-toggle {
    padding: var(--space-3) var(--space-4);
  }

  .accordion-inner {
    padding: var(--space-4);
  }
}

/* ========================================
   WOOCOMMERCE PRODUCT BUNDLES STYLING
   ======================================== */

/* Bundle form wrapper - main container */
.bundle_form .bundle_data {
  background: var(--background-color);
  border-radius: var(--border-radius-xl);
  margin-bottom: var(--space-4);
}

/* Bundled items container */
.bundled_products_wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.bundle_add_to_cart_button:first-of-type {
  display: none;
}

/* Bundle header title - "Detta ingår" - placed BEFORE products */
.bundle_form::before {
  content: "Detta ingår i paketet";
  display: block;
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--text);

  padding-bottom: var(--space-2);
}

div.bundled_product_summary:not(.thumbnail_hidden) .details {
  padding: 0 !important;
}

.bundle_availability {
  display: none;
}

/* Bundle wrapper - individual item card */
.bundled_product_summary {
  background: var(--white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-4);
  transition: all 0.25s ease;
  position: relative;
}

/* Bundle item layout */
.bundled_product {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* Bundle product image */
.bundled_product_images {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--background-color);
  border: 1px solid var(--color-border-light);
}

.bundled_product_images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bundled_product_summary:hover .bundled_product_images img {
  transform: scale(1.05);
}

/* Hide the gallery/zoom elements */
.bundled_product_images .woocommerce-product-gallery__trigger,
.bundled_product_images .zoomImg {
  display: none !important;
}

/* Bundle product details */
.bundled_product .details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

/* Bundle product title */
.bundled_product_title_inner {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.bundled_product_title_inner a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bundled_product_title_inner a:hover {
  color: var(--primary);
}

/* Bundle quantity display - styled badge */
.bundled_product_title_inner .quantity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 400;
  min-width: 24px;
  height: 24px;
  padding: 0 var(--space-2);
  border-radius: var(--border-radius-full);
}

.bundled_item_wrap:before,
.bundled_item_wrap:after,
div.bundled_product_summary:after,
div.bundled_product_summary:before,
.bundle_data:after,
.bundled_product_summary .bundled_product_optional_checkbox:after {
  display: none !important;
}

/* Hide bundle product description */
.bundled_product_excerpt,
.bundled_product .bundled_product_excerpt {
  display: none !important;
}

/* Bundle product price */
.bundled_product_price {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
}

.bundled_product_price .price {
  color: var(--primary);
  font-weight: 400;
}

/* Bundle quantity input - for variable quantities */
.bundled_product .bundled_qty,
.bundled_product .quantity {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.bundled_product .quantity .qty {
  width: 60px;
  height: 36px;
  text-align: center;
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-md);
  font-size: var(--text-base);
  font-weight: 600;
  transition: border-color 0.2s ease;
}

.bundled_product .quantity .qty:focus {
  outline: none;
  border-color: var(--primary);
}

/* Bundle optional checkbox */
.bundled_product_optional_checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.bundled_product_optional_checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  cursor: pointer;
}

.bundled_product_optional_checkbox label {
  font-size: var(--text-sm);
  color: var(--text-color);
  cursor: pointer;
  font-weight: 500;
}

/* Bundle total section */
.bundle_price,
.bundle_data .price {
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--text);
  padding: var(--space-4) 0 0 0;
  border-top: 2px solid var(--color-border-light);
  margin-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bundle_data .price::before {
  content: "Totalt paketpris:";
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-muted);
}

/* Bundle validation messages */
.bundle_error,
.bundle_message {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
}

.bundle_error {
  background: rgba(220, 53, 69, 0.1);
  color: var(--color-error);
  border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Bundle availability */
.bundled_product_availability {
  font-size: var(--text-xs);
  font-weight: 500;
}

.bundled_product_availability .in-stock {
  color: var(--success);
}

.bundled_product_availability .out-of-stock {
  color: var(--color-error);
}

.bundled_product_summary
  .bundled_product_title
  a.bundled_product_permalink:before {
  display: none;
}

.bundled_product_title_link {
  display: none;
}

/* Responsive bundle styling */
@media (max-width: 768px) {
  .bundle_form .bundle_data {
    padding: var(--space-4);
  }

  .bundle_form .bundle_data::before {
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
  }

  .bundled_product {
    gap: var(--space-3);
  }

  .bundled_product_images {
    width: 64px;
    height: 64px;
  }

  .bundled_product_summary {
    padding: var(--space-3);
  }

  .bundled_product_title_inner {
    font-size: var(--text-sm);
    flex-wrap: wrap;
  }

  .bundled_product_summary::after {
    width: 20px;
    height: 20px;
    font-size: 10px;
    top: var(--space-2);
    right: var(--space-2);
  }

  .bundle_data .price {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-1);
  }

  .bundle_data .price::before {
    font-size: var(--text-sm);
  }
}

/* ============================================
   PRODUCT INFORMATION TABS
   ============================================ */

.single-product-tabs-wrapper {
  padding: var(--space-10) 0;
}

.single-product-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Tab Navigation */
.single-product-tabs-nav {
  display: flex;
  gap: 0;

  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.single-product-tabs-nav::-webkit-scrollbar {
  display: none;
}

.single-product-tab-button {
  background: transparent;
  border: none;
  padding: var(--space-4) var(--space-20);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.single-product-tab-button:hover {
  color: var(--primary);
}

.single-product-tab-button.active {
  color: var(--primary);
  background-color: var(--white);
  border-bottom-color: var(--primary);
  font-weight: 600;
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
}

/* Tab Content */
.single-product-tabs-content {
  padding: var(--space-8) var(--space-10);
  background-color: var(--white);
  border-bottom-left-radius: var(--border-radius-lg);
  border-bottom-right-radius: var(--border-radius-lg);
}

.single-product-tab-panel {
  display: none !important;
  animation: fadeIn 0.3s ease-in;
}

.single-product-tab-panel.active {
  display: block !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Full Info Tab - Two Column Layout */
.single-product-tab-panel[data-tab="full-info"].active {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

/* Tab Text Content */
.single-product-tab-text {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-color);
}

.single-product-tab-text h2,
.single-product-tab-text h3,
.single-product-tab-text h4 {
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--black);
}

.single-product-tab-text p {
  margin-bottom: var(--space-4);
}

.single-product-tab-text ul,
.single-product-tab-text ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.single-product-tab-text li {
  margin-bottom: var(--space-2);
}

/* Right Column - PDF and Video */
.single-product-tab-media-column {
  display: flex;
  margin-top: var(--space-6);
  flex-direction: column;
  gap: var(--space-6);
  border-left: 1px solid var(--border-light);
  padding-left: var(--space-12);

  @media (width <= 768px) {
    border: none;
    padding-left: 0;
  }
}

/* PDF List */
.single-product-tab-pdfs {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.single-product-pdf-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4);
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--text);
}

.single-product-pdf-item:hover {
  border-color: var(--primary);
}

.single-product-pdf-info {
  display: flex;
  gap: var(--space-2);
  flex: 1;
}

.single-product-pdf-title {
  font-weight: 500;
  color: var(--text);
  font-size: 1rem;
}

.single-product-pdf-size {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.single-product-pdf-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Video Wrapper */
.single-product-tab-video {
  margin-top: 0;
}

.single-product-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.single-product-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--border-radius-lg);
}

/* Documents List */
.single-product-documents-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 700px;
}

.single-product-document-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background-color: var(--background-color);
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.single-product-document-item:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.single-product-document-item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.single-product-document-item span {
  flex: 1;
  font-weight: 500;
}

.single-product-document-item .download-icon {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.single-product-document-item:hover .download-icon {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .single-product-tabs-wrapper {
    padding: var(--space-6) 0;
  }

  .single-product-tab-button {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
  }

  .single-product-tabs-content {
    padding: var(--space-6) var(--space-4);
  }

  /* Stack columns on mobile */
  .single-product-tab-panel[data-tab="full-info"].active {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .single-product-tab-text {
    font-size: var(--text-sm);
  }

  .single-product-pdf-link {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
  }

  .single-product-document-item {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
  }
}

/* ===== Wrapper layout ===== */
.prdctfltr_filter_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Varje filter */
.prdctfltr_filter {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Select2 wrapper blir själva pillen */
.prdctfltr_filter .select2-container {
  position: relative;
}

/* Pill bakgrund */
.prdctfltr_filter .select2-selection--single {
  border-radius: 999px !important;
  border: 2px solid #f3a23a !important;
  background: #fff !important;
  padding: 10px 44px 10px 16px !important;
  height: auto !important;
  display: flex !important;
  align-items: center;
  box-shadow: none !important;
}

/* Text */
.prdctfltr_filter .select2-selection__rendered {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  font-size: 14px;
  color: #333;
}

/* Dölj standardpilen */
.prdctfltr_filter .select2-selection__arrow {
  display: none !important;
}

/* Orange cirkel */
.prdctfltr_filter .select2-selection--single::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f3a23a;
}

/* Vit pil */
.prdctfltr_filter .select2-selection--single::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  z-index: 2;
}

/* Hover */
.prdctfltr_filter .select2-selection--single:hover {
  border-color: #e8911f !important;
}

/* Focus */
.prdctfltr_filter .select2-container--focus .select2-selection--single,
.prdctfltr_filter .select2-selection--single:focus {
  border-color: #d97f10 !important;
  box-shadow: 0 0 0 3px rgba(243, 162, 58, 0.2) !important;
}

/* Sortering select (woocommerce ordering) */
.prdctfltr_woocommerce_ordering .select2-selection--single {
  border-radius: 999px !important;
  border: 2px solid #f3a23a !important;
  padding: 10px 44px 10px 16px !important;
}

/* Mobil */
@media (max-width: 768px) {
  .prdctfltr_filter_wrapper {
    width: 100%;
  }

  .prdctfltr_filter {
    width: 100%;
  }

  .prdctfltr_filter .select2-container {
    width: 100% !important;
  }
}
