.view-product.layout-show.task-show {
    .quantityOptionsAndWishlist {
        display:flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom:1rem;
        a.hikabtn.hikawishlist {
            border-radius:4px;
            background:var(--blue-1);
            border:none;
            margin-bottom:0;
            transition: all 0.3s;
            &:hover, &:focus, &:active {
                background:var(--red-3);
            }
        }
    }
    .quantityAndButtonWrap {
        display:flex;

        &:has(.show-quantity) {
            gap:20px;
        }

        & > div, & > a {
            width:100%;
        }
        .hikashop_product_quantity_input_div_default_main {
            display:grid;
            grid-template-columns:45px auto 45px;
            opacity:0;
            max-width: 0;
            transition:all 1s;
            &.show-quantity {
                opacity:1;

                max-width: 100%;
            }
            a, input {
                padding:0 !important;
                margin:0 !important;
            }
            a {
                width:50px;
                font-size: 1.5rem;
                font-weight: 400;
            }
            input {
                width:100%;
                max-width:100% !important;
            }
        }
        .hikashop_cart_button {
            margin-bottom:0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
    /* Fix product image height */
    .hikashop_product_main_image {
        height:auto !important;
    }
    /* Fix youtube videos on product pages */
    .video {
        aspect-ratio: 16 / 9;
        width: 100%;
    }
.tagsWrapper {
    margin-bottom:1em;
   .tags {
       a {
           text-decoration: none !important;
           text-transform: uppercase;
           font-size:var(--size-0);
           margin:0;
           letter-spacing: 1px;
           .hikaTagSeparator {
               margin-left:6px;
               margin-right:1px;
               line-height:1;
           }
           &:last-of-type {
               .hikaTagSeparator {
                   display:none;
               }
           }
       }
   }
}
.hikashop_product_custom_item_info_table_block {
    margin-bottom: 2rem;
    .quantityOptionsAndWishlist {
        justify-content:flex-end;
    }
}


    #hikashopProductCharacteristics {
        .hikashop_product_custom_item_info_table {
            border:none;
            padding:0;
        }
        #hikashop_product_custom_item_info {
            .quantityOptionsAndWishlist {
                display:none;
            }
        }
    }
    #hikashop_product_quantity_main {
        .hikabtn.hikawishlist.wish-btn {
            display:none;
        }
    }
}
#load-main-contain {
    .card {
        .card__thumbnail {
            height:auto !important;
        }
        .card__trash {
            .fa.fa-trash {
                height:fit-content;
                line-height:1;
            }
        }
        .card__thumbnail__zoom-icons {
            display:grid;
            height:25px;
            width:25px;
            align-items:center;

            .fa {
                height:25px;
                width:25px;
                display:flex;
                align-items:center;
                justify-content:center;
                border:solid 1px #99CED3;
                border-radius:100vh;
                top:unset;
                left:unset;
                color:#011f3b;
                position:relative;
                font-style:normal;
                background:#99CED3;
                font-size:20px;
            }
            .fa-plus-circle {
                grid-area:1/1;
                &::before {
                    content:"+";
                    position:absolute;
                }


            }
            .fa-minus-circle {
                grid-area:1/1;
                &::before {
                    content:"-";
                    position:absolute;
                }
            }
        }
    }
    & > .flex-item {
        margin-top:2rem;
    }
}
body {
    overflow-x:hidden;
}
#topBar {
    .hikashop_small_cart_checkout_link, .hikashop_cart_empty_message {
        position:relative;
        height: 26px;
        display: block;
        color: transparent;
        width:27px;
        &::before {
            position:absolute;
            content:'';
            inset:0;
            z-index:1;
            background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" stroke="%23fff" stroke-width="1.5"><path d="M3.864 16.455c-.858-3.432-1.287-5.147-.386-6.301S6.148 9 9.685 9h4.63c3.538 0 5.306 0 6.207 1.154s.472 2.87-.386 6.301c-.546 2.183-.818 3.274-1.632 3.91c-.814.635-1.939.635-4.189.635h-4.63c-2.25 0-3.375 0-4.189-.635c-.814-.636-1.087-1.727-1.632-3.91Z"/><path d="m19.5 9.5l-.71-2.605c-.274-1.005-.411-1.507-.692-1.886A2.5 2.5 0 0 0 17 4.172C16.56 4 16.04 4 15 4M4.5 9.5l.71-2.605c.274-1.005.411-1.507.692-1.886A2.5 2.5 0 0 1 7 4.172C7.44 4 7.96 4 9 4" /><path d="M9 4a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Z"/></g></svg>');
            background-repeat:no-repeat;
        }
    }
    .hikashop_small_cart_total_title {
        display:none;
    }
    .hikashop_cart_dropdown_container {
        width:272px;
        .hikashop_cart_dropdown_content {
            margin-left: -88px;
            margin-top:14px;
            color:var(--blue-1);
            max-width:272px;
            padding: 10px;
            border:solid 1px #e1e1e1;
            .hikashop_cart_proceed_to_checkout {
                background:var(--blue-1);
                color:var(--white-2);
                display:flex;
                align-items:center;
                justify-content:center;
                margin-bottom:0;
                margin-top:10px;
                &:hover, &:focus, &:active {
                    background:var(--red-3);
                }
            }
            .hikashop_cart {
                thead {
                    display:none;
                }
                tfoot {
                    tr {
                        display:flex;
                        gap: 5px;
                        justify-content: right;
                        td {
                            width:auto;
                        }
                    }
                }
                tbody {
                    tr {
                        display:grid;
                        grid-template-columns:66px auto;
                        grid-template-rows:auto;
                        gap:10px;
                        margin-bottom:12px;
                        padding-bottom:5px;
                        border-bottom:solid 1px #d9d9d9;
                        &:nth-last-child(1) {
                            border-bottom:none;
                        }
                        td {
                            display:block;
                            padding:0;
                        }
                        .hikashop_cart_module_product_image {
                            grid-area:1/1/2/2;
                        }
                        .hikashop_cart_module_product_name_value {
                            grid-area:1/2/2/3;
                            font-size:14px;

                        }
                        .hikashop_cart_module_product_price_value {
                            grid-area:2/1/3/3;
                            text-align:right;
                            font-size:14px;
                            .hikashop_product_price {
                                margin-left:auto
                            }
                        }
                    }

                }
            }
        }
    }
}
.exclusiveMissUniverse {
    margin-top:10px;
    font-size:var(--size-1);
    font-family: "Montserrat", sans-serif;
    font-weight:normal;
    font-style:italic;
    color:var(--blue-1);
    .originalPriceCrossed, .originalPrice {
        color:var(--red-1);
        text-decoration: line-through;
    }
    .newPrice {
        display:block;
        margin-top:5px;
    }
}
.orderNowBtn {
    order:7;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--blue-1);
    color:var(--white-2);
    border:none;
    border-radius:4px;
    margin-top:10px;
    transition: all 0.3s;
    &:hover, &:focus, &:active {
        background:var(--red-1);
        color:var(--white-2);
    }

}