.product-information {
        display: none;
    }

.product-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    border-radius: 16px;
    border: 1px solid #F3F3F3;
    background-color: white;
    padding: 16px;
    box-shadow: var(--sds-size-depth-0) var(--sds-size-depth-025) var(--sds-size-depth-400) var(--sds-size-depth-0) var(--sds-color-black-100);
}

.product-header-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-share-button {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 8px;
    background-color: transparent;
    color: #1D2430;
    line-height: 16px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.product-share-button:focus {
    color: #1D2430;
    background-color: transparent;
}

.product-share-button:active {
    color: #1D2430;
    background-color: transparent;
}

.product-share-button:hover {
    color: #1D2430;
    background-color: transparent;
}

.product-share-button-block {
    position: relative;
}

button.product-share-button:after {
    content: '';
    width: calc(100% - 3px);
    height: 2px;
    background-color: #1D2430;
    position: absolute;
    bottom: -4px;
    left: 5;
    opacity: 0;
    transition: 0.2s all;
}

.product-share-button-block:hover button:after, .product-share-button.active:after {
    opacity: 1;
}

.product-share-button-icon {
    width: 16px;
    height: 16px;
    background-image: url("../images/product_share_icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.product-page-card-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 33.6px;
  color: #1D2430;
  margin:0;
  padding:0;
}

.product-page-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-container {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.text-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    line-height: 16px;
}

.static-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #707B8B;
}

.dynamic-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #1D2430;
}

.product-page-registration-date, .product-page-kilometers, .product-page-euro-standard, .product-page-horse-power {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Rethink Sans;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: rgba(29, 36, 48, 1);
}

.product-page-card-specs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px;
    background-color: #F5F7FA;
    border-radius: 8px;
}

.product-page-card-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.package-card {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
  padding: 16px;
  gap: 16px;
  background-color: #F5F7FA;
}

.info-logo {
  width: 56px;
  height: 56px;
}

.package-card-middle {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #1D2430;
}

.package-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.package-description-text {
    color: #707B8B;
}

.package-description-link {
    font-family: Inter, Sans-serif;
    color: #2DA736;
    text-decoration: underline !important;
}

.package-description-link:hover {
    color: #2DA736;
}

.package-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.product-page-package-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background-color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.3s;
}

.product-page-package-badge-icon {
    width: 24px;
    height: 24px;
    background-image: url("../images/yellow_star_filled_icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.badge {
  display: flex;
  padding: 2px 8px;
  background-color: #0d6efd;
  color: white;
  font-size: 14px;
  border-radius: 8px;
}

.availability {
    display: flex;
    align-items: center;
    gap: 8px;
}

.left-badge {
    background-color: #FCFCFC;
    color: black;
    border-radius: 8px;
    font-size: 12px;
    padding: 2px 8px;
}

.right-badge {
    background-color: #FAFAFA;
    color: #0d6efd;
    border-radius: 8px;
    font-size: 12px;
    padding: 2px 8px;
}

.badge-availability {
    position: relative; 
}

.tooltip {
    display: none;
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: black;
    padding: 10px;
    width: max-content;
    max-width: 150px;
    font-size: 12px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    pointer-events: none;
}

/*
.left-badge:hover .tooltip,
.left-badge .tooltip:hover {
    display: block;
    pointer-events: auto;
}*/
.product-request-availability .tooltip-wrapper, .availability .tooltip-wrapper{
	left:3%;
}

.product-request-availability:hover .tooltip-wrapper .tooltip, .availability:hover .tooltip-wrapper .tooltip,
.tooltip-wrapper:hover .tooltip {
    display: block;
    pointer-events: auto; 
}

.info-link {
    color: rgba(45, 167, 54, 1);
    font-weight: bold;
    text-decoration: underline;
    display: inline-block;
    margin-top: 5px;
    font-size: 12px;
}

.tooltip .info-link {
    text-decoration: underline;
}

.info-link:hover {
    color: #25912E;
}

.product-page-card-price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-page-card-price {
    font-weight: 700;
    font-size: 36px;
    line-height: 43.2px;
    color: #1D2430;
}

.product-page-card-price-without-pvm {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #707B8B;
}

.product-page-card-request-button {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #DFE4EC;
    background-color: #F5F7FA;
    color: #1D2430;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
}

.product-page-card-notification-button, .product-page-card-favorite-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border-radius: 8px;
    border: solid 1px #DFE4EC;
    padding: 12px 16px;
    background-color: #F5F7FA;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #1D2430;
}

.product-page-card-favorite-button.favorited .favorite-btn-icon {
    background-image: url("../images/product_star_filled_icon.svg");
}

.product-page-card-notification-button.notification-enabled .notification-btn-icon {
    background-image: url("../images/notification-enabled.svg");
	background-size: 12px;
}

.product-page-card-notification-button:hover, .product-page-card-favorite-button:hover, .product-page-card-request-button:hover {
    background-color: rgba(235, 237, 240, 1);
    color: rgba(29, 36, 48, 1);
    border: solid 1px darkgray;
}

.product-page-card-notification-button:focus, .product-page-card-favorite-button:focus, .product-page-card-request-button:focus {
    background-color: rgba(235, 237, 240, 1);
    color: rgba(29, 36, 48, 1);
    border: solid 1px darkgray;
}

.product-page-card-notification-button:active, .product-page-card-favorite-button:active, .product-page-card-request-button:active {
    background-color: rgba(235, 237, 240, 1);
    color: rgba(29, 36, 48, 1);
    border: solid 1px darkgray;
}

.notification-favorite-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

/* product-card-with-slider-widget styles */
.image-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-image {
    width: 100%;
    flex-shrink: 0;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.left-arrow {
    left: 10px;
}
.right-arrow {
    right: 10px;
}
        
/* header */
.product-page-header {
    justify-content: space-between;
    align-items: center;
    padding: 8px calc(((100vw - 1416px)/2) - 10px) 8px calc(((100vw - 1416px)/2) - 10px);
    background-color: #EAF6EB;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    display: none;
}

@media (min-width: 768px) and (max-width: 1416px) {
    .product-page-header {
        padding: 8px 20px !important;
  }
}

.admin-bar .product-page-header{
    top: 105px;
}
.product-page-header-left {
    display: flex;
    gap: 10px;
}

.product-page-header-left-feature-img {
    width: 100px;
    border-radius: 8px !important;
    height: auto;
}

.product-page-header-left-info-sections {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
}

.product-page-header-left-first-row {
    display: flex;
    gap: 16px;
}

.product-page-location {
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #1D2430;
}

.product-page-code {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #707B8B;
}

.product-page-title {
    font-size: 18px;
    font-weight: bold;
}

.product-page-header-right {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.product-page-header-right-price-pvm-block {
    display: flex;
    gap: 8px;
    margin-right: 8px;
    justify-content: center;
    align-items: baseline;
}

.product-page-header-left-mobile,
.product-page-header-right-mobile {
    display: none;
}

.product-page-price {
    font-size: 24px;
    line-height: 36px;
    font-weight: bold;
}

.product-page-without-pvm {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #707B8B;
}

.product-page-favor-button {
    padding: 8px 10px;
    background-color: white;
    color: black;
    border: solid 1px #FCFCFC;
    border-radius: 8px;
}

.favorite-button-top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    padding: 12px;
    background-color: #F5F7FA;
    border: 1px solid #DFE4EC;
}

.product-page-call-button {
    display: flex;
    height: 40px;
    gap: 8px;
    padding: 12px 16px;
    background-color: #F5F7FA;
    border: solid 1px #DFE4EC;
    cursor: pointer;
    border-radius: 8px;
}

.product-page-call-button:hover,
.favorite-button-top-bar:hover,
.product-page-call-button:focus,
.favorite-button-top-bar:focus,
.product-page-call-button:active,
.favorite-button-top-bar:active {
    background-color: #EBF0F4;
    border-color: #9EA7B5;
}

.product-page-call-button a {
    display: flex;
    gap: 8px;
    color: #1D2430 !important;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
}

.product-page-request-button {
    height: 40px;
    padding: 12px 16px;
    background-color: #2DA736;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
}

.product-page-request-button:hover,
.product-page-request-button:focus,
.product-page-request-button:active {
    background-color: #24862B;
}

/* share button */
.product-share-button-block{position:relative;}
.share-modal{display:none;}
.share-modal.active{
    position: absolute;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px;
    background: #fff;
    z-index: 3;
    padding: 8px !important;
    width: 216px;
    border: 1px solid #DFE4EC;
    border-radius: 8px;
    top: 25px;
    right: 0;
    flex-wrap: wrap;
    box-shadow: var(--sds-size-depth-0) var(--sds-size-depth-025) var(--sds-size-depth-400) var(--sds-size-depth-0) var(--sds-color-black-100);
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #1D2430;
}

.share-modal-copy-link {
    display: flex;
    gap: 8px;
    padding: 8px 12px;
}

.share-list-item:hover {
    background-color: #F5F7FA;
}

.share-social-copy-icon {
    background-image: url('../images/copy_icon.svg');
}

.share-social-facebook-icon,
.share-social-linkedin-icon,
.share-social-twitter-icon,
.share-social-email-icon,
.share-social-whatsapp-icon,
.share-social-viber-icon,
.share-social-copy-icon
{
    background-size: contain;
    background-position: center;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
}

.share-social-facebook-icon {
    background-image: url('../images/facebook_icon.svg');
}

.share-social-linkedin-icon {
    background-image: url('../images/linkedin_icon.svg');
}

.share-social-twitter-icon {
    background-image: url('../images/twitter_icon.svg');
}

.share-social-email-icon {
    background-image: url('../images/gmail_icon.svg');
}

.share-social-whatsapp-icon {
    background-image: url('../images/whatsapp_icon.svg');
}

.share-social-viber-icon {
    background-image: url('../images/viber_icon.svg');
}

.share-list-item {
    width: 100%;
    display: flex;
    gap: 8px;
    background-repeat: no-repeat;
    padding: 8px 12px;
    background-position: 8px center;
    height: 32px;
    border-radius: 8px;
    transition: 0.2s all;
    cursor: pointer;
    position: relative;
}

   .product-page-header-left-mobile-call-btn-icon, 
   .product-page-header-left-mobile-memorize-btn-icon, 
   .product-page-header-right-mobile-request-icon {
        width: 16px;
        height: 16px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
}
    
    .product-page-header-left-mobile-call-btn-icon {
        background-image: url("../images/phone_icon.svg");
}

    .product-page-header-left-mobile-memorize-btn-icon {
        background-image: url("../images/product_star_icon.svg");
}

.favorite-button.favorited .product-page-header-left-mobile-memorize-btn-icon {
    background-image: url("../images/product_star_filled_icon.svg");
}
    
/* For mobile screens */
@media (max-width: 768px) {
    .admin-bar .product-page-header{
        top: auto;
    }
    
    .product-page-card-title {
        font-size: 20px;
        line-height: 24px;
    }
    
    .product-header-container {
        gap: 12px;
    }
    
      .product-page-card-price {
        font-size: 24px;
        line-height: 33.6px;
    }

    .product-page-card-price.sticky-header-desktop {
		font-size: 13px;
	}

    .product-page-card-notification-button, .product-page-card-favorite-button {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .product-page-package-badge {
        height: 36px;
    }
    
    .product-page-package-badge-icon {
        width: 20px;
        height: 20px;
    }
    
    /* sticky header */
    
    .product-page-header {
        justify-content: space-between;
        align-items: center;
        padding: 16px !important;
        background-color: #EAF6EB;
        border-top: 1px solid #DFE4EC;
        position: fixed;
        top: auto; /*calc(100vh - 81px);*/
		bottom:0;
        left: 0;
        right: 0;
        z-index: 100;
        /*box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);*/
        margin-bottom: 0;
    }

    /*.product-page-header-left-mobile-call-btn,*/
    .product-page-header-left-mobile-memorize-btn
    {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        padding: 8px;
        border-radius: 8px;
        background-color: #F5F7FA;
        border: 1px solid #DFE4EC;
    }
    
    .product-page-header-left-mobile-call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        padding: 8px;
        border-radius: 8px;
        background-color: #F5F7FA;
        border: 1px solid #DFE4EC;
}

    .product-page-header-left-mobile-call-btn.avoid-infinity {
        background-image: url("../images/phone_icon.svg");
        background-repeat: no-repeat;
        background-size: 18px 18px;
        background-position: center;
        font-size: 0;
        line-height: 0;
        color: transparent !important;
}
    
    .product-page-header-left-mobile-call-btn:hover,
    .product-page-header-left-mobile-memorize-btn:hover,
    .product-page-header-left-mobile-call-btn:focus,
    .product-page-header-left-mobile-memorize-btn:focus,
    .product-page-header-left-mobile-call-btn:active,
    .product-page-header-left-mobile-memorize-btn:active {
        background-color: #EBF0F4;
        border: 1px solid #9EA7B5;
    }
    
    
    .product-page-header-left-mobile-call-btn-icon,
    .product-page-header-left-mobile-memorize-btn-icon,
    .product-page-header-right-mobile-request-icon
    {
        width: 16px;
        height: 16px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }
    
    .product-page-header-left-mobile-call-btn-icon {
        background-image: url("../images/phone_icon.svg");
    }
    
    .product-page-header-left-mobile-memorize-btn-icon {
        background-image: url("../images/product_star_icon.svg");
    }
    
    .product-page-header-right-mobile-request-block {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-page-header-right-mobile-request-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        padding: 8px;
        border-radius: 8px;
        background-color: #2DA736;
        border: 1px solid #2DA736;
    }
    
    .product-page-header-right-mobile-request-btn:hover,
    .product-page-header-right-mobile-request-btn:focus,
    .product-page-header-right-mobile-request-btn:active {
        background-color: #24862B;
        border: 1px solid #24862B;
    }
    
    .product-page-header-right-mobile-request-icon {
        background-image: url("../images/mail_icon.svg");
        filter: brightness(0) saturate(100%) invert(96%) sepia(4%) saturate(16%) hue-rotate(103deg) brightness(105%) contrast(103%);
    }
    
    .product-page-header-left, .product-page-header-right {
        display: none;
    }
    
    .product-page-header-left-mobile {
        display: flex;
        align-items: flex-start;
        flex-direction: row;
        gap: 16px; 
    }
    
    .product-page-header-right-mobile {
        display: flex;
        flex-direction: row;
        gap: 16px;
    }
    
    .product-page-header-right-mobile-price-block {
        display: flex;
        flex-direction: column;
        gap: 8px;
        justify-content: center;
        align-items: end;
    }
    
    .product-page-price {
        font-weight: 700;
        font-size: 20px;
        line-height: 16px;
        color: #1D2430;
    }
}

.product-card.block-blur {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;    
    -ms-user-select: none;
}

.product-page-card-discount-price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-page-card-discount-price-inner-block {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    border-radius: 9999px;
    padding-right: 12px;
    background-color: #FFFFFF;
    border: 1px solid #2DA736;
    box-shadow: 0px 0px 0px 2px #D5EDD7, 0px 0px 4px 0px #F5F7FA;
}

.product-page-card-discount-symbol-block {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: #2DA736;
    width: 40px;
    height: 40px;
}

.product-page-card-discount-symbol-icon {
    width: 24px;
    height: 24px;
    background-image: url("../images/price_discount_symbol.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .product-page-card-discount-price-block.mobile {
        flex-direction: column;
        align-items: end;
    }
    .product-page-card-discount-price-inner-block {
        height: 32px;
    }
    .product-page-card-discount-symbol-block {
        width: 32px;
        height: 32px;
    }
    .product-page-card-discount-symbol-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    html.ios-fix,
    html.ios-fix body {
        height: 100% !important;
        overflow: hidden !important;
        margin: 0;
        padding: 0;
        position: fixed !important;
        width: 100% !important;
    }

    html.ios-fix .scroll-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        z-index: 1;
        padding-bottom: 81px;
    }
	
	html.ios-fix .whatsapp-sticky-icon {
		bottom: 110px !important;
	}
	
	html.ios-fix .back-to-top {
		bottom: 170px !important;
	}
}