/** Shopify CDN: Minification failed

Line 421:0 Unexpected "1"

**/
.section-main-product .section-wrapper {
  position: relative;
}

.swiper-autoplay {
  transition-timing-function: linear;
}

/* sticky product css start here  */

.sticky-buy-button-wrapper {
  width: 450px;
  position: fixed;
  right: 25px;
  bottom: 60px;
  z-index: 2;
  transition: all 0.4s;
  transform: translateY(100%);
  opacity: 0;
}

.sticky-buy-button-wrapper.fade-in {
  opacity: 1;
  transform: translateY(0%);
}

.sticky--button-box {
  background: var(--body_alternate_background);
  padding: 10px;
  border-radius: var(--product_card_radius);
  box-shadow: 0 0 10px #6666664d;
}

.sticky--button-box .sticky--close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky--button-box .sticky--close svg {
  width: 14px;
  height: auto;
}

.sticky--product-card {
  display: grid;
  align-items: flex-start;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
}

.sticky--product-image {
  width: 90px;
  border-radius: var(--product_card_radius);
}

.sticky--product-detail .product--variant-title {
  padding-top: 3px;
}

.sticky--product-detail .product--pricing {
  padding-top: 3px;
}

.sticky--product-expand-detail {
  margin-top: auto;
}

.sticky--product-detail .product--pricing .product--actual-price {
  font-weight: 600;
}

.sticky--add-to-cart-wrapper .product--pricing span {
  font-size: var(--text);
  font-weight: 700;
}

@media (min-width: 1025px) {
  .sticky--add-to-cart-wrapper {
    position: fixed;
    bottom: 50px;
    left: 20px;
    right: 20px;
    background: var(--body_background);
    display: flex;
    z-index: 2;
    box-shadow: 0 11px 36px 0 rgb(0 0 0 / 20%);
    border-radius: var(--card_radius);
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
    width: 90%;
    margin: 0 auto;
    border: 1px solid var(--border_color);
  }

  .sticky--add-to-cart-wrapper.fade-out {
    opacity: 0;
    pointer-events: none;
  }

  .sticky--add-to-cart-wrapper.fade-in {
    opacity: 1;
  }

  .sticky--product-img-wrapper {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .sticky--product-qty-wrapper {
    flex-grow: 1;
    display: flex;
  }

  .sticky--product-buttons {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .sticky--product-img-wrapper {
    padding: 10px;
    display: grid;
    align-items: center;
    gap: 15px;
    grid-template-columns: auto 1fr;
  }

  .sticky--product-img {
    width: 80px;
    border-radius: var(--card_radius);
    overflow: hidden;
  }

  .sticky--product-title .product--sku {
    font-size: var(--small_text);
  }

  .sticky--product-title .product--sku,
  .sticky--product-title .product--title {
    padding-bottom: 4px;
  }

  .sticky--product-block {
    border-left: 1px solid var(--border_color);
  }

  .sticky--product-variant-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .sticky--product-varient,
  .sticky--product-quantity {
    flex: 1;
    height: 100%;
    position: relative;
  }

  .sticky--product-quantity {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
  }

  /*  */
  .sticky--product-dropdown-content .product--options {
    padding-bottom: 0;
  }

  .sticky--product-dropdown-content .quantity {
    max-width: 100%;
    background: var(--body_alternate_background);
    padding: 12px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
  }

  .sticky--product-dropdown-content .quantity+.quantity {
    margin-top: 8px;
  }

  .sticky--product-dropdown-content .quantity .product--variants-title {
    padding-bottom: 0;
  }

  .sticky--product-dropdown-content .quantity .quantity-button svg {
    width: 10px;
  }

  .sticky--product-dropdown-content .quantity .quantity--inner {
    height: 34px;
    border: 0;
  }

  .sticky--product-dropdown-content .quantity .quantity-button {
    min-width: 34px;
    max-width: 34px;
    height: 34px;
    background: var(--body_background);
    border-radius: 4px;
    transition: .3s ease all;
  }

  .sticky--product-dropdown-content .quantity .quantity-input {
    min-height: 34px;
    max-width: 40px;
    font-size: var(--large_text);
  }

  .sticky--product-variant-wrapper .product--variants-title [data-selected-variant] {
    font-size: var(--small_text);
  }

  .sticky--product-varient+.sticky--product-varient {
    border-left: 1px solid var(--border_color);
  }

  /*  */
  .sticky-collapsible-content-button {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    min-height: 85px;
    justify-content: space-between;
    background: transparent;
    width: 100%;
  }

  .sticky-collapsible-button-icon {
    transition: 0.5s ease;
  }

  .sticky-collapsible-button-icon svg {
    width: 12px;
    height: auto;
    display: block;
  }

  .sticky-collapsible-content--block.active .sticky-collapsible-button-icon {
    transform: rotate(180deg);
  }

  .sticky--product-dropdown-content {
    position: absolute;
    z-index: 2;
    bottom: 90%;
    background: var(--body_background);
    left: 0;
    right: 0;
    box-shadow: 0 0 26px 0 #0000002e;
    padding: 20px;
    border-radius: var(--card_radius);
    min-width: 310px;
    display: none;
    -webkit-backdrop-filter: blur(10px);
  }

  .sticky--product-variant-label {
    padding-bottom: 10px;
  }

  .sticky--product-varient .product--variants-title,
  .sticky--product-variant-label {
    font-size: var(--medium_text);
    font-weight: 600;
  }

  .sticky--product-buttons {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sticky--product-buttons .product-checkout-buttons {
    padding: 0;
  }

  .sticky--product-buttons .product-checkout-buttons.dynamic-button-enable {
    grid-template-columns: 1fr;
  }

  .sticky--product-buttons .shopify-payment-button__more-options {
    font-size: var(--small_text);
  }

  .sticky--product-buttons .button,
  .sticky--product-buttons .shopify-cleanslate button,
  .sticky--product-buttons .shopify-cleanslate div[role='button'] {
    min-height: 46px !important;
    height: auto;
  }

  .sticky--product-buttons shopify-accelerated-checkout,
  .sticky--product-buttons shopify-accelerated-checkout-cart {
    --shopify-accelerated-checkout-button-block-size: 46px;
  }

  .sticky--product-buttons button.shopify-payment-button__button {
    min-height: 46px;
  }

  .sticky--close:hover svg line {
    animation: cross_animate 0.5s ease-in-out forwards;
  }

  .sticky--close:hover svg path {
    animation: cross_animate 0.5s ease-in-out forwards;
    animation-delay: 0.1s;
  }
}

@media (min-width: 1200px) {
  .sticky--add-to-cart-wrapper {
    left: 30px;
    right: 30px;
  }

  .sticky--product-buttons .product-checkout-buttons.dynamic-button-enable {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1441px) {
  .sticky--add-to-cart-wrapper {
    left: 50px;
    right: 50px;
  }

  .sticky--product-buttons {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* sticky product css end here  */

@media (max-width: 1024px) {
  .sticky--add-to-cart-wrapper {
    padding: 30px 20px 0;
  }

  .sticky--product-img,
  .sticky-collapsible-content-button,
  .sticky--product-quantity .sticky--product-variant-label {
    display: none;
  }

  .sticky--product-title .product--title {
    font-size: var(--h5);
    padding-bottom: 10px;
    color: var(--heading_color);
    font-family: var(--heading_font_family);
    font-weight: var(--heading_font_weight);
    line-height: var(--heading_font_line_height);
  }

  .sticky--product-title .product--pricing {
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .sticky--add-to-cart-wrapper {
    padding: 30px 15px 0;
  }

  .sticky-buy-button-wrapper {
    bottom: 0px;
    width: 100%;
    max-width: 100%;
    right: 0;
    left: 0;
  }

  .sticky--button-box {
    border-radius: var(--product_card_radius) var(--product_card_radius) 0 0;
  }
}

@media (max-width: 575px) {}

/* Begræns billedbredden i Carousel-layout (desktop) */
@media (min-width: 1025px) {
  .section-main-product .product--wrapper.layout_2 .main--product-image-wrapper {
    max-width: 600px;      /* prøv 580–640px hvis du vil tweake */
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1025px) {
  .section-main-product .swiper-button-next,
  .section-main-product .swiper-button-prev {
    display: none !important;
  }

  /* hvis der stadig står en “tom” nav-container og fylder */
  .section-main-product .swiper-nav {
    display: none !important;
  }
}


1