@media screen and (max-width:767px) {
    .product-page-container {
        padding: 0px;
    }
    
    .product-breadcrumbs, .product-images-wrapper, .product-specs > .h5, .product-specs > p, .product-short-specs, .product-features {
        padding: 0px 20px;
    }
}

/* BREADCRUMBS COMPONENT */

.product-breadcrumbs {
    padding: 30px 0px;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-breadcrumbs img, .product-breadcrumbs picture {
    width: 16px;
    height: 16px;
}

#breadcrumbs-home-page {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#breadcrumbs-home-page svg {
    width: 16.25px;
    height: 15.24px;
}

.product-breadcrumbs a,
.product-breadcrumbs a:hover,
#breadcrumbs-home-page svg path,
#breadcrumbs-home-page:hover svg path {
    transition: 0.3s ease all;
}

#breadcrumbs-home-page:hover svg path{
    stroke: var(--hoverBlue);
}

.product-breadcrumbs a:hover {
    color: var(--blue1);
}

@media screen and (max-width:767px) {
    .product-breadcrumbs {
        padding: 10px 20px;
        padding-bottom: 0px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
    }
    
    .product-breadcrumbs img, .product-breadcrumbs picture {
        width: 14px;
        height: 14px;
    }
    
    #breadcrumbs-home-page {
        width: 18px;
        height: 18px;
    }
    
    #breadcrumbs-home-page svg {
        width: 14.62px;
        height: 13.71px;
    }
}

/* Product main info wrapper */

.product-main-info-wrapper {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.product-main-info-wrapper > div {
    flex: 1;
}

/* Product images section */

.product-images-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.product-main-image-wrapper {
    border: none;
    width: 100%;
    height: 484px;
    max-height: 484px;
    position: relative;
    background: none;
    cursor: zoom-in;
}

#main_product_image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-image-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-image-gallery-wrapper {
    width: 100%;
    overflow-x: overlay;
    -ms-overflow-style: none; 
    scrollbar-width: none;
}

.product-image-gallery-wrapper::-webkit-scrollbar {
    display: none;
}

.product-image-gallery button {
    width: 100px;
    height: 100px;
    border: 1px solid var(--white1);
    cursor: pointer;
    border-radius: 4px;
}

.product-image-gallery img, .product-image-gallery picture {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.product-image-gallery button.active-gallery-image {
    border: 1px solid var(--blue1);
    cursor: none;
    pointer-events: none;
}

#modal {
    display: none;
    position: fixed !important;
    z-index: 500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#modal > p {
    color: var(--white1);
    text-align: center;
    padding: 0px 50px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.modal-content {
    position: relative;
    width: auto;
    border-radius: 8px;
    padding: 20px;
    max-height: 95vh;
}

.product-main-image-wrapper > div {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 10px;
    top: 20px;
    left: 20px;
}

.filter-display {
    padding: 6px 16px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.filter-display.filter-green {
    color: var(--green1);
    background-color: rgba(9, 134, 73, 0.1);
}

.filter-display.filter-yellow {
    color: var(--yellow1);
    background-color: rgba(245, 166, 35, 0.1);
}

/* Product specs */

.product-specs > .h5 {
    margin: 12px 0px 16px 0px;
}

.product-short-specs {
    margin: 16px 0px 24px 0px;
}

.product-prices {
    display: flex;
    gap: 8px;
    align-items: center;
}

.product-prices-wrapper {
    padding: 16px 24px 0px 24px;
}

#current-price {
    color: var(--blue1);
    font-size: 20px;
    line-height: 27px;
    font-weight: 700;
    font-family: "OpenSans-Bold";
}

#old-price {
    text-decoration: line-through;
    color: var(--grey2);
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    font-family: "OpenSans-SemiBold";
}

.vat-text {
    color: var(--grey2);
    margin-top: 4px;
}

.product-features {
    margin-top: 24px;
}

.product-features:has(.protection-level), .product-features:has(.features-list) {
    margin: 24px 0px 32px 0px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-features > div > div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-features svg{
    cursor: pointer;
}

.product-features svg path {
    transition: 0.3s ease all;
}

.product-features svg:hover path {
    stroke: var(--blue1);
    transition: 0.3s ease all;
}

.feature-tooltip {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.protection-container .explanation-text, .features-container .explanation-text {
    max-width: 265px;
    width: fit-content;
}

.feature-tooltip > p, .explanation-text {
    color: var(--white1);
    padding: 6px 8px;
    border-radius: 4px;
    background-color: var(--hoverBlue);
    width: 265px;
    visibility: hidden;
    position: absolute;
    z-index: 1;
    bottom: 140%;
    left: 0;
}

.product-features svg:hover + p,
.protection-container:hover .explanation-text,
.features-container:hover .explanation-text  {
    visibility: visible;
}

/* Sets */

.product-sets {
    padding: 0px 24px 0px 24px;
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.product-sets > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.product-sets > div > div {
    display: flex;
    justify-content: center;
}

.product-sets > div > div > span {
    width: fit-content;
    padding: 2px 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    color: var(--white1);
    text-transform: uppercase;
}

.best-value-badge {
    background-color: #098649;
}
.most-popular-badge {
    background-color: var(--blue1);
}

.product-sets button {
    padding: 8px 16px;
    background-color: var(--white1);
    border: 1px solid var(--greyBorder);
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    color: var(--black1);
    transition: 0.3s ease all;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.product-sets button .min-quant {
    white-space: nowrap;
}

.product-sets button:disabled {
    background-color: var(--greyBorder);
    pointer-events: none;
    opacity: 0.7;
}

.product-sets button:hover {
    transition: 0.3s ease all;
    border: 1px solid var(--blue1);
}

.product-sets button.selected-set {
    transition: 0.3s ease all;
    border: 1px solid var(--blue1);
    background-color: var(--blue1);
    color: var(--white1);
}

.product-sets-cart-wrapper.product-out-of-stock .product-sets button {
    color: var(--grey2);
    pointer-events: none;
}

.product-sets-cart-wrapper.product-out-of-stock .product-sets button:hover {
    border: 1px solid var(--greyBorder);
}

.product-sets-cart-wrapper.product-out-of-stock .quantity-inputs {
    background-color: var(--white1);
}

.product-sets-cart-wrapper.product-out-of-stock .quantity-inputs button:hover path {
    color: var(--grey2);
}

.product-sets-cart-wrapper.product-out-of-stock .quantity-inputs button {
    pointer-events: none;
}

.product-sets-cart-wrapper.product-out-of-stock .quantity-inputs span {
    color: var(--grey2);
}

.product-sets-cart-wrapper.product-out-of-stock .add-to-cart-div > .add-to-cart-wrapper {
    background-color: var(--white1);
    border: 1px solid var(--greyBorder);
    pointer-events: none;
}

.product-sets-cart-wrapper.product-out-of-stock .add-to-cart-div > .add-to-cart-wrapper button {
    color: var(--grey2);
    pointer-events: none;
}

/* Add to cart */

.product-add-to-cart-div {
    padding: 30px 24px 0px 24px;
}

.ellipse {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.product-in-stock .ellipse {
    background-color: var(--green1);
}

.product-in-stock.product-on-backorder .ellipse {
    background-color: var(--yellow1);
}

.product-out-of-stock .ellipse {
    background-color: var(--red1);
}

.shipping-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.shipping-time span {
    color: var(--grey2);
}

.shipping-time span.shipping-hours {
    color: var(--black1);
}

.shipping-hours {
    margin-left: 2px;
}

.product-add-to-cart-div img, .product-add-to-cart-div picture {
    width: 24px;
    height: 24px;
}

.cashback-div {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-bottom: 16px;
}

.cashback-div a {
    margin-left: 8px;
    color: var(--grey2);
    text-decoration: underline;
    transition: 0.3s ease all;
}

.cashback-div a:hover {
    transition: 0.3s ease all;
    color: var(--blue1);
}

.cashback-div > span {
    color: var(--grey2);
}

.cashback-div > div {
    color: var(--blue1);
}

.add-to-cart-div {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.quantity-inputs {
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid var(--greyBorder);
    display: flex;
    gap: 15px;
    background-color: var(--white1);
    align-items: center;
}

.quantity-inputs button {
    color: var(--grey2);
    cursor: pointer;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.quantity-inputs button path {
    fill: var(--grey2);
    transition: 0.3s ease all;
}

.quantity-inputs button:hover path {
    fill: var(--black1);
    transition: 0.3s ease all;
}

.add-to-cart-div > .add-to-cart-wrapper {
    transition: 0.3s ease all;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background-color: var(--blue1);
    border: none;
    width: 100%;
    position: relative;
    cursor: pointer;
}

.add-to-cart-wrapper button {
    border: none;
    background-color: transparent;
    color: var(--white1);
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.add-to-cart-div > .add-to-cart-wrapper:hover {
    background-color: var(--hoverBlue); 
}

.add-to-cart-wrapper.adding-product button {
    opacity: 0;
    pointer-events: none;
}

.add-to-cart-wrapper.adding-product .spinner-loader {
    display: block;
}

.product-extra-info button {
    cursor: pointer;
    padding: 10px 16px;
    color: var(--black1);
    background-color: transparent;
    border: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s ease all;
}

.extra-info-buttons {
    display: flex;
    gap: 26px;
    border-bottom: 1px solid var(--greyBorder);
    overflow-x: auto;
}

.product-extra-info button.active-info-button {
    border-bottom: 1px solid var(--blue1);
    transition: 0.3s ease all;
}

.extra-info-container {
    margin-top: 30px;
}

.extra-info-container > div {
    display: none;
}

.product-extra-info:has(#product-description.active-info-button) #product-description-content,
.product-extra-info:has(#product-efficiency.active-info-button) #product-efficiency-content,
.product-extra-info:has(#product-guide.active-info-button) #product-guide-content,
.product-extra-info:has(#product-reviews.active-info-button) #product-reviews-content,
.product-extra-info:has(#product-info.active-info-button) #product-info-content,
.product-extra-info:has(#product-delivery.active-info-button) #product-delivery-content
{
    display: block;
}

/* Product description/how to change/return */
#product-delivery-content ol,
#product-guide-content ol,
#product-description-content ol,
#product-delivery-content ul,
#product-guide-content ul,
#product-description-content ul {
    padding-left: 41px;
    margin-bottom: 12px;
    margin-top: 12px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-family: "OpenSans-Regular";
}

#product-delivery-content strong,
#product-guide-content strong,
#product-description-content strong {
  line-height: 25px;
  font-weight: 600;
  font-family: "OpenSans-SemiBold";
  margin-top: 16px;
  margin-bottom: 16px;
  display: inline;
  margin: 0;
  padding: 0;
}

#product-delivery-content hr,
#product-guide-content hr,
#product-description-content hr {
    margin: 20px 0px;
}

#product-delivery-content h1,
#product-guide-content h1,
#product-description-content h1,
#product-delivery-content h2,
#product-guide-content h2,
#product-description-content h2,
#product-delivery-content h3,
#product-guide-content h3,
#product-description-content h3,
#product-delivery-content h4,
#product-guide-content h5,
#product-description-content h5,
#product-delivery-content h6,
#product-guide-content h6,
#product-description-content h6 {
    margin-bottom: 24px;
    margin-top: 40px;
}

#product-delivery-content p,
#product-guide-content p,
#product-description-content p {
    margin-bottom: 24px;
}

#product-delivery-content h2,
#product-guide-content h2,
#product-description-content h2 {
  font-size: 26px;
}

#product-delivery-content h3,
#product-guide-content h3,
#product-description-content h3 {
  font-size: 22px;
}

/* table */

#product-efficiency-content {
    overflow-x: auto;
}

#product-efficiency-content > table > thead th:first-child {
    border-top-left-radius: 8px;
}

#product-efficiency-content > table > thead th:last-child {
    border-top-right-radius: 8px;
}

#product-efficiency-content > table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

#product-efficiency-content > table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

#product-efficiency-content > table {
    border-collapse: separate;
    border-radius: 8px;
    border-spacing: 0;
}

#product-efficiency-content > table td, #product-efficiency-content > table th {
    text-align: center;
}

#product-efficiency-content > table th,
#product-efficiency-content > table td {
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  background-color: var(--greyBackground1);
  padding: 10px 20px;
}

#product-efficiency-content > table th:first-child,
#product-efficiency-content > table td:first-child {
  border-left: 1px solid white
}

#product-efficiency-content > table th {
  border-top: solid 1px white
}

#product-efficiency-content > table thead th {
    padding: 10px;
    background-color: var(--blue1);
    color: var(--white1);
}

#product-efficiency-content > table thead th:last-child,
#product-efficiency-content > table tbody tr td:last-child {
    text-align: start;
}

#product-efficiency-content > table thead th:last-child {
    padding-left: 20px;
}

#product-efficiency-content > table tbody tr td:last-child {
    padding: 10px 10px 10px 16px;
}

.high-efficiency-text {
    display: flex;
    gap: 4px;
    white-space: nowrap;
    align-items: center;
}

/* HOW TO CHANGE SECTION */

#product-guide-content a {
    display: flex;
    gap: 15px;
    color: var(--black2);
    transition: 0.3s ease all;
}

#product-guide-content a:hover {
    color: var(--black1);
    transition: 0.3s ease all;
    text-decoration: underline;
}

#product-guide-content a path {
    color: #828282;
    transition: 0.3s ease all;
}

#product-guide-content a:hover path {
    fill: var(--blue1);
    transition: 0.3s ease all;
}

/* Review section */

.individual-product-rating {
    margin-bottom: 16px;
}

#comments {
    display: flex;
    gap: 50px;
}

.average-rating-section > div {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--greyBorder);
    margin-top: 10px;
}

.average-rating-section > div > div:first-child {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.average-rating-section .product-star-rating {
    width: 100%;
    justify-content: space-between;
}

.individual-product-rating {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.individual-product-rating > div {
    display: flex;
    gap: 8px;
    align-items: center;
}

.rating-bar {
    height: 4px;
    background-color: var(--greyBorder);
    border-radius: 80px;
    width: 200px;
    position: relative;
    overflow: hidden;
}

.rating-bar .rating-fill {
    height: 100%;
    background-color: var(--blue1);
}

.new-review {
    max-width: 253px;
}

.middle-review-info-text {
    margin: 8px 0px 16px 0px;
}

#new_rating {
    width: 100%;
    padding: 11.5px 0px;
    background-color: var(--blue1);
    color: var(--white1);
    border-radius: 8px;
    transition: 0.3s ease all;
}

#new_rating:hover {
    transition: 0.3s ease all;
    background-color: var(--hoverBlue);
}

ol.commentlist {
    margin-top: 10px;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comment-section-div {
    width: 100%;
}

.comment_container.depth-1 {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--greyBorder);
}

.comment_container.depth-2 {
    padding: 24px 24px 0px 24px;
}

.comment_container::marker {
    content: none;
}

.review-summary {
    display: flex;
    justify-content: space-between;
}

.custom-review-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.custom-review-date {
    color: var(--grey2);
}

.review-comment {
    margin-top: 16px;
    display: flex;
    gap: 16px;
}

.review-comment img, .review-comment picture{
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
}

.comment-section-div .woocommerce-pagination {
    margin-top: 24px;
}

.comment-section-div .woocommerce-pagination ul {
    display: flex;
    gap: 8px;
    justify-content: center;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    font-family: "OpenSans-SemiBold";
}

.comment-section-div .woocommerce-pagination ul li {
    list-style-type: none;
}

.comment-section-div .woocommerce-pagination ul li a, .comment-section-div .woocommerce-pagination ul li .current {
    padding: 12.5px;
    border-radius: 8px;
    border: 1px solid var(--greyBorder);
    display: flex;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease all;
}

.comment-section-div .woocommerce-pagination ul li .current {
    color: #1F74B7;
    background-color: #E9F2F8;
    border: 1px solid #1F74B7;
}

.comment-section-div .woocommerce-pagination ul li a:hover {
    color: #1F74B7;
    border: 1px solid #1F74B7;
    transition: 0.3s ease all;
}

.comment-section-div .woocommerce-pagination .prev path, .comment-section-div .woocommerce-pagination .next path{
    transition: 0.3s ease all;
}

.comment-section-div .woocommerce-pagination .prev:hover path, .comment-section-div .woocommerce-pagination .next:hover path{
    fill: var(--blue1);
    transition: 0.3s ease all;
}

.comment-section-div .page-numbers li {
    display: flex;
    align-items: end;
}

#review_form_wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white1);
    padding: 24px;
    border-radius: 16px;
    z-index: 1000;
    width: 100%;
    max-width: 470px;
    display: none;
}

#review_form {
    width: 100%;
}

#review_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 21, 21, 0.5);
    z-index: 999;
    display: none;
}

.review-modal-intro {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--greyBorder);
}

.review-modal-text {
    margin: 24px 0px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-modal-text p {
    text-align: center;
}
.comment-form-author,.comment-form-email,.comment-form-cookies-consent{
    display: none;
}
#review_form .form-submit #submit {
    width: 100%;
    border-radius: 8px;
    background-color: var(--blue1);
    color: var(--white1);
    padding: 14px 0px;
    height: 50px;
    transition: 0.3s ease all;
    border: none;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    font-family: "OpenSans-SemiBold";
    cursor: pointer;
}

#review_form .form-submit #submit:hover {
    background-color: var(--hoverBlue);
    transition: 0.3s ease all;
}

.review-upload-photo {
    display: flex;
    margin: 8px 0px 24px 0px;
}

.review-upload-photo input[type="file"] {
    display: none; 
}

.file-upload-label img, .file-upload-label picture {
    width: 16.25px;
    height: 12.53px;
}

.file-upload-label {
    display: inline-flex;
    gap: 8px;
    padding: 13px 16px;
    background-color: var(--white1);
    color: var(--black1);
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid var(--greyBorder);
    align-items: center;
    transition: 0.3s ease all;
}

.file-upload-label:hover {
    border: 1px solid var(--blue1);
    transition: 0.3s ease all;
}

.image-input-div {
    margin-left: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

#clear-image-input {
    cursor: pointer;
    border: none;
    background-color: transparent;
    padding: 0px;
}

.image-input-div:has(p:empty) {
    display: none;
}

#clear-image-input path {
    transition: 0.3s ease all;
}

#clear-image-input:hover path {
    stroke: var(--blue1);
    transition: 0.3s ease all;
}

#close-review-modal {
    padding: 0px;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#comment {
    width: 100%;
    border-radius: 8px;
    padding: 14px 16px;
    border: 1px solid var(--greyBorder);
}

#comment:focus, #comment:not(:placeholder-shown) {
    color: var(--black1);
    border: 1px solid var(--blue1);
    outline: none;
}

.star-rating-input {
    display: flex;
    justify-content: center;
}

.star-rating-input span {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.star-rating-input span:hover svg,
.star-rating-input span.selected svg {
    fill: var(--yellow1);
    transition: 0.3s ease all;
}

.comment-form-rating {
    margin-bottom: 18px;
}

.product-specs-wrapper {
    width: 750px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column;
    gap: 50px;
    row-gap: 0px;
}

.product-specs-wrapper > div:nth-child(-n+8) {
    grid-column: 1;
}

.product-specs-wrapper > div:nth-child(n+9) {
    grid-column: 2;
}

.product-specs-wrapper > div {
    padding: 12px 0px;
    border-bottom: 1px solid var(--greyBorder);
    display: flex;
    width: 350px;
    justify-content: space-between;
}

.product-specs-wrapper > div > span:first-child {
    color: var(--grey2);
    display: flex;
    align-items: center;
}

.product-specs-wrapper > div > span:last-child {
    color: var(--black1);
    text-align: end;
}

.product-sets-cart-wrapper {
    background-color: var(--greyBackground1);
}

.product-features .protection-container-wrapper, .product-features .features-container-wrapper {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.product-features .protection-container, .product-features .features-container {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    border-radius: 500px;
    gap: 8px;
    background-color: var(--blue2);
    padding: 12px 16px;
    color: var(--black1);
}

.product-features .protection-container svg, .product-features .features-container svg {
    pointer-events: none;
}

.product-features .protection-container svg, .product-features .features-container svg  {
    cursor: default;
}

.product-short-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-short-specs > div {
    display: flex;
    gap: 8px;
}

.product-short-specs > div span:first-child {
    color: var(--grey2);
}

.product-short-specs > div span:last-child {
    color: var(--black1);
}

.extra-info-buttons svg {
    display: none;
}

.woocommerce-noreviews {
    margin-top: 7px;
}

.woocommerce-notices-wrapper:has( + .product-page-container) {
    max-width: 1440px;
    margin: auto;
    width: 100%;
    padding: 0 50px;
    padding-top: 20px;
}

.woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce-notices-wrapper:has( + .product-page-container) .woocommerce-error{
    margin-bottom: 0px;
}

#old-price {
    display: none;
}

#old-price.show-price {
    display: block;
}

#current-price.discount-applied + #old-price {
    display: block;
}

.review-image-div + div.caption1 {
    padding-top: 12px;
    padding-bottom: 12px;
}

#product-guide-content iframe, #product-efficiency-content iframe, #product-description-content iframe, #product-delivery-content iframe {
    width: 60%;
    height: 100%;
    aspect-ratio: 16/9;
}

@media screen and (max-width:1200px) {
    
    #product-efficiency-content table {
        table-layout: auto;
        min-width: max-content;
    }
}

@media screen and (max-width:1000px) {
    .feature-tooltip > p {
        width: 200px;
    }

    .protection-container .explanation-text, .features-container .explanation-text {
        max-width: 200px;
    }

    .review-image-div + div.caption1 {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .review-image-div {
        order: 2;
    }

    .review-comment {
        flex-direction: column;
    }

    .modal-content {
        max-height: 85vh;
    }   
}

@media screen and (max-width:767px) {
    
    #product-delivery-content h1,
    #product-guide-content h1,
    #product-description-content h1,
    #product-delivery-content h2,
    #product-guide-content h2,
    #product-description-content h2,
    #product-delivery-content h3,
    #product-guide-content h3,
    #product-description-content h3,
    #product-delivery-content h4,
    #product-guide-content h5,
    #product-description-content h5,
    #product-delivery-content h6,
    #product-guide-content h6,
    #product-description-content h6 {
        margin-bottom: 24px;
        margin-top: 30px;
    }

    #product-delivery-content p,
    #product-guide-content p,
    #product-description-content p  {
        margin-bottom: 24px;
    }

    #product-delivery-content h2,
    #product-guide-content h2,
    #product-description-content h2 {
        font-size: 24px;
    }

    #product-delivery-content h3,
    #product-guide-content h3,
    #product-description-content h3 {
        font-size: 20px;
    }
    
    /* Product description/how to change/return */
    #product-delivery-content ol,
    #product-guide-content ol,
    #product-description-content ol,
    #product-delivery-content ul,
    #product-guide-content ul,
    #product-description-content ul {
      padding-left: 35px;
      font-size: 14px;
      line-height: 19px;
      font-weight: 400;
      font-family: "OpenSans-Regular";
    }
    
    .woocommerce-notices-wrapper:has( + .product-page-container) {
        padding: 0px 20px;
    }
    
    .extra-info-buttons svg {
        display: block;
    }

    .modal-content {
        width: 100vw;
    }
    
    .extra-info-buttons {
        flex-direction: column;
        gap: 0px;
        border-bottom: none;
        overflow-x: none;
    }
    
    .product-extra-info button {
        display: flex;
        justify-content: space-between;
        padding: 16px 0px;
        align-items: center;
        border-bottom: 1px solid var(--greyBorder);
        color: var(--grey2);
        transition: none;
    }
    
    .product-extra-info button.active-info-button {
        color: var(--black1);
        transition: none;
    }
    
    .product-extra-info button.active-info-button svg {
        transform: rotate(180deg);
    }
    
    .product-extra-info button.active-info-button svg path {
        stroke: var(--blue1);
    }
    
    .product-extra-info {
        margin-top: 8px;
    }
    
    /* Creates overflow effect */
    .product-image-gallery {
        width: max-content;
        gap: 8px;
    }
    
    .product-main-info-wrapper {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 0px;
        margin-top: 10px;
    }
    
    .product-images-wrapper {
        gap: 16px;
    }
    
    .product-main-image-wrapper > div {
        top: 10px;
        left: 0px;
    }
    
    .filter-display {
        padding: 6px;
    }
    
    .product-main-image-wrapper {
        height: 350px;
        max-height: 350px;
    }
    
    .product-image-gallery button {
        width: 75px;
        height: 75px;
    }
    
    .product-short-specs {
        gap: 8px;
    }
    
    #current-price {
        font-size: 18px;
        line-height: 25px;
    }
    
    #old-price {
        font-size: 14px;
        line-height: 19px;
        font-weight: 600;
        font-family: "OpenSans-SemiBold";
    }
    
    .product-features .protection-container-wrapper, .product-features .features-container-wrapper {
        gap: 8px;
    }
    
    .product-features .protection-container, .product-features .features-container {
        padding: 8px 12px;
    }
    
    .product-sets > div > div > span {
        width: 100%;
        text-align: center;
    }
    
    .product-sets button:first-child {
        border-radius: 8px;
    }
    
    .product-sets button {
        border-radius: unset;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        gap: 4px;
        padding: 7px 16px;
    }
    
    .product-sets {
        padding: 5px 16px 0px 16px
    }
    
    .product-add-to-cart-div {
        padding: 16px 16px 0px 16px;
    }
    
    .add-to-cart-div {
        height: 45px;
    }
    
    .quantity-inputs {
        padding: 14px 17px;
    }
    
    .cashback-div {
        margin-top: 16px;
        padding-bottom: 24px;
    }
    
    .product-add-to-cart-div img, .product-add-to-cart-div picture {
        width: 20px;
        height: 20px;
    }
    
    #product-description-content,
    #product-efficiency-content,
    #product-guide-content,
    #product-reviews-content,
    #product-info-content,
    #product-delivery-content {
        margin-top: 16px;
        margin-bottom: 20px;
        display: none;
    }
    
    #product-description.active-info-button + #product-description-content,
    #product-efficiency.active-info-button + #product-efficiency-content,
    #product-guide.active-info-button + #product-guide-content,
    #product-reviews.active-info-button + #product-reviews-content,
    #product-info.active-info-button + #product-info-content,
    #product-delivery.active-info-button + #product-delivery-content
    {
        display: block;
    }
    
    .product-specs-wrapper {
        width: 100%;
        grid-template-columns: 1fr;
        grid-auto-flow: row;   
    }

    .product-specs-wrapper > div:nth-child(n+9) {
        grid-column: 1;
    }
    
    .product-specs-wrapper > div {
        width: 100%;
    }
    
    #comments {
        flex-direction: column;
        gap: 16px;
    }
    
    .new-review {
        max-width: unset;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    
    .average-rating-section > div {
        padding: 20px 16px;
    }
    
    #new_rating {
        display: flex;
        justify-content: center;
    }
    
    .rating-bar {
        width: 91%;
    }
    
    .comment_container.depth-1 {
        padding: 16px;
    }

    .comment_container.depth-2 {
        padding-left: 16px;
    }
    
    .comment-section-div .woocommerce-pagination {
        margin-bottom: 4px;
    }
    
    .comment-section-div .woocommerce-pagination ul {
        overflow-x: auto;
    }
    
    #product-guide-content iframe, #product-efficiency-content iframe, #product-description-content iframe, #product-delivery-content iframe {
        width: 70%;
    }
    
    #product-guide-content svg {
        width: 17px;
        height: 20px;
    }
    
    #product-guide-content a {
        gap: 10px;
    }
    
    #close-review-modal {
        border: none;
        width: 20px;
        height: 20px;
    }
    
    #close-review-modal img, #close-review-modal picture {
        width: 10px;
        height: 10px;
    }
    
    #review_form_wrapper {
        padding: 16px;
        max-width: 400px;
    }
    
    #review_form .form-submit #submit {
        height: 45px;
        padding: 0px;
    }
    
    .image-input-div {
        margin-left: 10px;
        gap: 8px;
        width: 100%;
        justify-content: space-between;
        overflow: hidden;
        white-space: nowrap;
    }
    
    .file-upload-label {
        white-space: nowrap;
    }
    
    #placed-file-text {
        overflow: hidden;
    }
    
    .product-star-rating {
        padding: 0px 20px;
    }

    .extra-info-container {
        margin-top: 0px;
    }
}

@media screen and (max-width:479px) {

    #product-guide-content iframe, #product-efficiency-content iframe, #product-description-content iframe, #product-delivery-content iframe {
        width: 90%;
    }
    
    .product-main-image-wrapper {
        height: 250px;
        max-height: 250px;
    }
    
    .product-image-gallery button {
        width: 50px;
        height: 50px;
    }
    
    #review_form_wrapper {
        max-width: 310px;
    }
    
    .feature-tooltip > p {
        width: 150px;
    }

    .protection-container .explanation-text, .features-container .explanation-text {
        max-width: 150px;
    }

}

@media screen and (max-width:767px) {
    
    .product-features {
        margin: 24px 0px 24px 0px;
    }
}