:root {
    --height-product-content: 72vh;
    --interactive-btn-font-size: 9px;
    --min-width-interactive-window: min(285px, 95%);
    --text-shadow-color: hsl(21deg 50% 13% / 90%);
    --highlight-color-shade1: hsla(14, 100%, 50%, 1);
    --highlight-color-shade2: hsla(14, 100%, 40%, 1);
    --highlight-color-shade3: hsl(37deg 32% 36%);
    --highlight-color-shade4: hsla(14, 100%, 10%, 1);
    --highlight-color-shade5: hsla(14, 100%, 5%, 1);
    --button-background: #000;
    --highlight-color-shade0: hsl(20deg 37% 60%);
    --button-text-color: #FFFFFF;
    --highlight-color-attention0: hsl(38, 33%, 52%);
    --highlight-color-attention1: hsl(38, 33%, 36%);
    --red-shade-warning: #c37575;
}

/* header or navbar at top */
header.header-nav-bar-top {
    color: #FFF;
    grid-column: 1/span 3;
    /* background: rgba(0,0,0,0.1) linear-gradient(-180deg, black, transparent 100%); */
    width: 100%;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.nav-bar-top {
    display: flex;
    align-content: center;
    justify-content: center;
}

.nav-bar-top .brand {
    font-size: 2rem;
    position: relative;
    z-index: 4;
}

/* extra branding, small */
.pr_detail>.brand {
    font-family: 'Quicksand', sans-serif;
    color: #fff;
    z-index: 5;
    left: 0;
    top: 71vh;
    transform: translateX(-42%) rotate(-90deg);
    font-weight: 400;
}

/* after header and before footer content */
.change-bg-img {
    grid-column: 1/span 3;
    height: 80vh;
    position: relative;
    /* width: 100%; */
    width: 98vw;
    left: 0;
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: center;

    z-index: 1;
}

.change-bg-img .chevrons_bg {
    height: 30vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.change-bg-img .left-button,
.change-bg-img .right-button {
    width: 35%;
    height: 100%;
    display: flex;
    align-items: center;
}

.change-bg-img .right-button {
    justify-content: flex-end;
}

.change-bg-img .chevron-arrow:hover>span svg {
    fill: rgba(201, 186, 186, 0.7);
}

.change-bg-img span>svg {
    fill: rgba(201, 186, 186, 0.2);
    width: 32px;
    height: 32px;
}

.image-bullets {
    /* border: 1px solid red; */
    display: flex;
    padding: 15px;
    padding-left: 8vw;
    position: absolute;
    bottom: -2.5rem;
}

.image-bullets .hollow-sphere {
    width: 10px;
    height: 10px;
    padding: 2px;
    border: 2px solid rgba(155, 155, 155, 0.4);
    border-radius: 50%;
    margin-inline-end: 10px;
    cursor: pointer;
}

.image-bullets:hover .hollow-sphere {
    border: 2px solid rgba(155, 155, 155, 0.7);
}

.image-bullets:hover .solid-sphere {
    border: 2px solid rgba(155, 155, 155, 0.7);
}

.image-bullets .hollow-sphere:hover {
    border: 2px solid rgba(155, 155, 155, 0.9);
}

.image-bullets .solid-sphere {
    background-color: rgba(155, 155, 155, 1);
}

/* end of image bulletins and left-right chevron cursors */

/* start of image captions */
.img-story-interact {
    grid-column: 1/span 2;
    position: absolute;
    top: 15vh;
    min-width: 337.3px;
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
}

.img-story {
    grid-column: 1/span 2;
    /* position: absolute; */
    /* color: hsla(34, 78%, 91%, 0.6); */
    color: hsla(34, 78%, 91%, 1);
    /* top: 15vh; */
    /* border: 1px solid red; */
    padding: 6% 30% 5% 6%;

}

.img-story-header {
    font-weight: 600;
    font-size: 2.5rem;
    font-family: 'Quicksand', sans-serif;
    overflow: hidden;
    text-shadow: 0px 2px var(--text-shadow-color);

    display: flex;
    flex-direction: row;
}

.img-story-header::after {
    content: "";
}

.reveal-text-ltr {
    transform: translateX(-50vw);
    opacity: 0;
    --story-head-animation-delay: 0.9s;
    --story-head-animation-func: cubic-bezier(0.19, 1, 0.22, 1);
    --story-head-animation-duration: 0.9s;
    --story-head-animation-name: my-animation;
    -moz-animation: var(--story-head-animation-name) var(--story-head-animation-duration) var(--story-head-animation-func) forwards var(--story-head-animation-delay);
    -webkit-animation: var(--story-head-animation-name) var(--story-head-animation-duration) var(--story-head-animation-func) forwards var(--story-head-animation-delay);
    animation: var(--story-head-animation-name) var(--story-head-animation-duration) var(--story-head-animation-func) forwards var(--story-head-animation-delay);
}

@keyframes my-animation {
    from {
        opacity: 0;
        -moz-transform: translateX(-50vw);
        -webkit-transform: translateX(-50vw);
        transform: translateX(-50vw);
    }

    to {
        opacity: 1;
        -moz-transform: translateX(0vw);
        -webkit-transform: translateX(0vw);
        transform: translateX(0vw);
    }
}

.img-story-intro {
    /* color: hsla(32, 66%, 94%, 0.85); */
    color: hsla(32, 66%, 94%, 1);

    font-size: 0.9rem;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    text-decoration: none;
    letter-spacing: 1.5px;
    line-height: 25px;
    text-shadow: 0px 0.5px var(--text-shadow-color);

    transition: color 0.15s ease 0s, filter 0.15s ease 0s;

    margin-inline-end: 18%;
    padding: 2% 5% 4% 3%;

    background: linear-gradient(135deg, rgba(0, 0, 0, 0.539), transparent);
    /* background: rgba(0, 0, 0, 0.539); */
    /* backdrop-filter: blur(17px); */

    display: flex;
    flex-direction: row;

    opacity: 0;

    --story-body-animation-delay: 2s;
    --story-body-animation-func: cubic-bezier(0.19, 1, 0.22, 1);
    --story-body-animation-duration: 2s;
    --story-body-animation-name: type;
    -moz-animation: var(--story-body-animation-name) var(--story-body-animation-duration) var(--story-body-animation-func) forwards var(--story-body-animation-delay);
    -webkit-animation: var(--story-body-animation-name) var(--story-body-animation-duration) var(--story-body-animation-func) forwards var(--story-body-animation-delay);
    animation: var(--story-body-animation-name) var(--story-body-animation-duration) var(--story-body-animation-func) forwards var(--story-body-animation-delay);

}

.img-story-intro::before {
    content: "";
    width: min(2%, 4px) !important;
    height: 16vh;
    margin-right: 21px;
    background: linear-gradient(135deg, #deeaef, transparent 90%);
    margin-top: 6%;
}

.img-story-intro:hover {}

.img-story-intro p {
    overflow: hidden;
    word-break: break-word;
    max-height: 8rem;
    /* experimental */
    width: 50vw;
}

/* interact buttons */
.interact-buttons {
    /* grid-column: 1/span 2;
    color: antiquewhite;
    margin: 5% 0 1% -2%;

    display: flex;
    flex-direction: column;
    align-items: flex-start; */

    grid-column: 3/span 1;
    min-width: 245px;
    grid-row: 2;
    top: 20vh;
    right: 2vw;
    color: antiquewhite;
    margin: 5% 0 1% -2%;
    display: flex;
    position: absolute;
    z-index: 2;
    flex-direction: column;
    align-items: flex-end;

    /* for animation */
    /* height: 0px; */
    /* overflow: hidden; */
    /* animation: animate-pay 0.5s ease forwards 1s; */

}

@keyframes animate-pay {
    from {
        height: 70px;
    }

    to {
        overflow: visible;
        /* height: unset; */
    }
}

.interact-buttons button {
    background-color: #000;
}

.expressCheckout {}

.StyledWidgetContainer--interact {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    flex-direction: row-reverse;
    height: fit-content;
    min-width: 0px;
    position: relative;
    width: max(var(--min-width-interactive-window), 100%);
}

.StyledWidget--interact {
    padding: 0;
    min-width: 95%;
    max-width: 100%;
    position: relative;
    transition: background 0.5s ease 0s;
    border-radius: 6px;
}

.StyledTitleTab {
    cursor: pointer;
    padding: 4px 20px 15px;
    margin-bottom: -8px;
    backdrop-filter: blur(23px);
    border-radius: 8px 8px 0 0;
    text-align: left;
    background: linear-gradient(90deg, rgb(33, 37, 41) 0%, rgba(33, 37, 41, 0.4) 100%);
}

.StyledTitle {
    margin-top: 6px;
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    font-size: calc(var(--interactive-btn-font-size)*2);
    font-weight: 400;
    color: #FFF;
    font-family: Poppins, sans-serif;
}

.interact_btnIcon {
    width: 24px;
    height: 24px;
    margin: 2px 7px 0 5px;
}

.expressCheckout button {}

.buy-Whole-Look {
    /* flex-direction: column; */
}

.buy-look-root {
    background: rgba(15, 28, 45, 0.7);
    backdrop-filter: blur(27px);
    border-radius: 6px;
    color: var(--pallete-white, #FFF);
    font-family: var(--font-heading, Poppins), sans-serif;
    padding: 8px 20px 14px;
    width: 95%;
}

.buy-Whole-Look button {
    margin: 0;
    border: none;
    font-weight: 600;
    font-size: calc(var(--interactive-btn-font-size)*1.6);
    line-height: 24px;
    cursor: pointer;
    background: var(--palette-purple400, #737ade);
    border-radius: calc(var(--interactive-btn-font-size)*2);
    padding: 4px 18px;
    width: 100%;
}

.buy-Whole-Look button:hover {
    background: var(--palette-purple500, #4C54D2);
}

.look-items {
    margin-top: 6px;
    font-weight: 600;
    font-size: calc(var(--interactive-btn-font-size)*1.7);
    letter-spacing: 0.7px;
    line-height: 24px;
    color: var(--pallete-white, #FFF);
    gap: 4px;
    padding-left: 8px;
}

.look-items ul {
    padding: 0;
    text-align: center;
}

.look-items ul li {
    list-style: circle;
    font-weight: 500;
    font-size: calc(var(--interactive-btn-font-size)*1.6);
    transition: list-style 0.5s ease-in-out 0.25s, all 0.5s ease-in-out 0.25s;
}

.look-items ul li:hover {
    list-style: disc;
}

.view-product {
    width: max(var(--min-width-interactive-window), 95%);
    display: flex;
    /* justify-content: flex-end; */
    justify-content: center;
}

.view-product button {
    border: none;
    display: block;
    margin-top: 5px;
    appearance: none;
    border-radius: 8px;
    cursor: pointer;
    backdrop-filter: blur(23px);
    padding: 12px 20px;
    background: linear-gradient(90deg, rgba(33, 37, 41, 0.6) 0%, rgba(33, 37, 41, 0.24) 100%);
    outline: none;
    font-size: calc(var(--interactive-btn-font-size)*2);
    font-weight: 600;
    font-family: Poppins, sans-serif;

    display: flex;
    align-items: center;
    justify-content: center;
    width: max(var(--min-width-interactive-window), 100%);
}

.view-product button:hover {
    background: rgba(33, 37, 41, 0.5);
}

.view-product button svg {
    width: calc(var(--interactive-btn-font-size)*2);
    margin-right: 10px;
}

/* *********************************************************************** */
/* product title and basic info section  */
.product-content {
    background-color: #FFFFFF;
    padding: 1rem 2rem;
    max-height: var(--height-product-content);
    overflow-y: auto;
    overflow-x: hidden;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    /* further improvements 2nd */
    max-width: 65rem;

    transform: scaleY(1.005);
}

/* width of the scroll bar inside all_imgs */
.product-content::-webkit-scrollbar {
    width: 2px;
    border-radius: 2px;
    scroll-behavior: smooth;
}

/* Track */
.product-content::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
.product-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

/* Handle on hover */
.product-content::-webkit-scrollbar-thumb:hover {
    background: transparent;
}

.product-title {
    font-size: 2.4rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
    padding-bottom: 1rem;
}

.product-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 80px;
    background: #12263a;
}

.product-detail {
    -webkit-font-smoothing: antialiased;
}

.product-detail h2 {
    text-transform: capitalize;
    color: #12263a;
    padding-bottom: 0.6rem;
}

.product-detail p {
    font-weight: 0.9rem;
    padding: 0.3rem;
    opacity: 0.8;
}

.product-detail ul {
    margin: 1rem 0;
    font-weight: 0.9rem;
}

.product-detail ul li {
    list-style: arabic-indic;
    /* background: url(https://fadzrinmadu.github.io/hosted-assets/product-detail-page-design-with-image-slider-html-css-and-javascript/checked.png) left center no-repeat; */
    background-size: 18px;
    padding-left: 1.7rem;
    margin: 0.4rem 0;
    font-weight: 600;
    opacity: 0.9;
}

.product-detail ul li span {
    font-weight: 400;
}

.product-detail p {
    animation: type 0.2s ease forwards;
    animation-delay: 0.02s;
    -webkit-user-select: none;
    user-select: none;
    opacity: 0;
}

.product-detail ul {
    animation: type 0.2s ease forwards;
    animation-delay: 0.5s;
    -webkit-user-select: none;
    user-select: none;
    opacity: 0;
}

.product-detail p:nth-child(0) {}

.product-detail p:nth-child(1) {
    animation-delay: 0.2s;
}

.product-detail p:nth-child(2) {
    animation-delay: 0.25s;
}

.product-detail p:nth-child(3) {
    animation-delay: 0.3s;
}

.product-detail p:nth-child(4) {
    animation-delay: 0.35s;
}

.product-detail p:nth-child(5) {
    animation-delay: 0.4s;
}

.product-detail p:nth-child(6) {
    animation-delay: 0.45s;
}

.product-detail p:nth-child(7) {
    animation-delay: 0.5s;
}

.product-detail p:nth-child(8) {
    animation-delay: 0.8;
}

@keyframes type {
    0% {
        opacity: 0;
        transform: translate(100px, 100px);
    }

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes blink {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* **************************************************************** */
/* drawer */
.doc-grid .product-content {
    max-height: auto;
    overflow-y: auto;
    border-radius: 8px;
    display: none;
}

.doc-grid {
    box-sizing: border-box;
    position: relative;
    width: min(100vw-100px, 680px);
    border-radius: 8px;
    padding: 36px 48px;
    backdrop-filter: blur(62px);
    margin-bottom: 30px;

    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    grid-gap: 1rem;
}



.productMeta {
    /* border: 1px solid red; */
    width: 100%;
    margin-top: 1.25rem;
    border-radius: 8px;
    background: #FFFFFF;
    padding: 1rem 2rem;
    text-align: left;

    transform: scale(1.01);
}

.meta_one {}

.productMeta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 31px;
    max-width: 95%;
    margin-bottom: 13px;
    /* color: var(--highlight-color-shade3); */
    color: var(--gold-color-replacement, hsl(38deg, 33%, 23%));
    text-transform: uppercase;
    font-weight: 400;
}

.productMeta-priceList {
    color: var(--highlight-color-shade0);
    margin-top: 15px;
}

span.productMeta-price {
    font-size: 16px;
}

span.money {
    font-family: 'Poppins', sans-serif;
    display: inline;
    font-weight: 500;
    transform: scaleY(1.2);
    color: black;
    background: #deeaef;
}

.add-wishlist {
    padding: 27px 0 0 0;
}

.add-wishlist svg {
    overflow: hidden;
}

.emp-side {}

.product-Variants {
    margin: 24px 0;
}

.variantTitle {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.variantTitle span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 21px;
    color: var(--gold-color-replacement, hsl(38deg, 33%, 23%));
    min-width: 95px;
}

.variantTitle ul {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: -6px -8px -6px 0px;
    padding: 0;
}

.variantTitle ul li::after {
    transition: all 0.2s ease 0s;
    width: 0px;
    height: 2px;
}

.variantTitle ul li {
    font-family: 'Barlow Condensed', sans-serif;
    /* margin: 6px 8px; */
    list-style: none;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* transition: width 0.2s ease 0s, color 0.1s ease 0.02s, all 0.25s ease-in-out 0s; */
}

.variantTitle ul li label {
    font-family: inherit;
    padding: 6px 8px;
    font-size: inherit;
    transition: width 0.2s ease 0s, color 0.1s ease 0.02s, all 0.25s ease-in-out 0s;
}

.variantTitle ul li::after {
    content: "";
    height: 2px;
    width: 100%;
    margin: 0px 1px;
}

.variantTitle ul li:hover::after {
    background-color: var(--gold-color-replacement, hsl(38deg, 33%, 23%));
    transform: translateY(0px);
}

.variantTitle ul li:hover,
.variantTitle ul li:active {
    /* font-weight: 600; */
    color: var(--gold-color-replacement, hsl(38deg, 33%, 23%));
}

.variantTitle ul li input:checked~label {
    background-color: var(--gold-color-replacement, hsl(38deg, 33%, 23%));
    color: #fff;
}

.variantTitle ul li label {}

.productMeta-Text {
    margin: 24px 0;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0;
}

span.Heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    color: #000;

}

.product-wrapper .line-below::after {
    height: 3px;
    background: linear-gradient(0deg, rgb(212, 168, 168), transparent 90%);
}

span.ShippingData,
span.ModelMeasurements {
    /* color: var(--highlight-color-shade0); */
    color: hsl(20deg 40% 27%);

}

.productForm__BuyButtons {}

.size-chart-container {
    width: 100%;
    text-align: end;
    position: absolute;
    top: 0vh;
    right: 1vw;
}

.sizing-chart-link {
    padding-left: 25px;
    position: relative;
    font-family: inherit !important;
    margin: 8px 0;
    word-break: normal;
    word-wrap: normal;
}

.sizing-chart-link>span {
    position: static;
    text-decoration: underline;
    font-weight: 500;
    font-style: normal;
    line-height: 26px;
    box-sizing: border-box;
    font-size: 13px;
    text-underline-offset: 4px;
}

.sizing-chart-link>span svg {
    width: 20px !important;
    height: 20px !important;
    position: relative;
    inset: 8px 8px 0px 0px;
    /* transform: translateX(-5px); */
    /* new svg  */
    transform: translate(-5px, -2px) rotate(90deg);
}

.productForm_AddToCart::before {}

.productForm_AddToCart:hover {}

.productForm_AddToCart:hover::before {}

.productForm_AddToCart {
    /* display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin: 6px 0px !important;
    border: 1.25px solid;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.5s ease 0s; */

    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 40px; */
    margin: 11px 0px !important;
    padding: 1rem !important;
    border: 1.25px solid;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.5s ease 0s;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    letter-spacing: 3px;
}

.productForm_AddToCart>span {
    font-family: inherit;
}

.Button--full {
    width: 100%;
}

.Button--primary {
    color: var(--button-text-color);
    /* background-color: var(--button-background); */
    background: linear-gradient(to right, var(--button-text-color) 50%, var(--button-background) 50%);
    transition: all 0.5s ease;
    background-position: right top;
    background-size: 200% 100%;
}

.Button--warning {
    /* color: var(--button-text-color);
    transition: all 0.5s ease;
    background-position: right top;
    background-size: 200% 100%;
    background: linear-gradient(to right, var(--button-text-color) 50%, #c37575 50%);  */
    border-color: var(--red-shade-warning,#c37575);
    color: var(--button-text-color);
    /* background-color: var(--button-background); */
    background: linear-gradient(to right, var(--button-text-color) 50%, var(--red-shade-warning,#c37575) 50%); 
    transition: all 0.5s ease;
    background-position: right top;
    background-size: 200% 100%;
}

.Button--primary:hover,
.Button--warning:hover {
    background-position: left top;
    color: var(--button-background);
}

.white-btn {
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: var(--height-btn_and_inp);
    font-size: 14px;
    line-height: 24px;
    padding: 0 20px;
    box-sizing: border-box;
    font-weight: 700;
    border-radius: 8px;
    margin: 0 0 7px;
}

/* implementation of collapsible section ************************************************** */
.Product-Asidee {
    background-color: #FFF;
    color: #000;
    grid-column: 1/span 2;
    margin-bottom: 0;
}

.Product--Tabs {
    /* max-width: var(--product--tabs-width, 567px); */
}

.collapsible {
    margin: 15px 0 0 0;
    display: flex;
    flex-direction: column;
}

.collapsible:not(:last-child)::after {
    content: "";
    margin-top: 14px;
    border-bottom: 2px solid hsl(0, 0%, 66%);
    width: 100%;
    background: #000;
}

.Collapsible_btn {
    padding: 10px 0;
    font-size: 16px;
    text-transform: uppercase;
    font-family: Poppins, sans-serif;
    display: flex;
    justify-content: space-between;
    /* font-family: 'Barlow Condensed', sans-serif; */
}


.collapsible-content {

    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.25s ease-in-out;
}

.collapsible input[type='checkbox'] {
    display: none;
}

.toggle:checked+.Collapsible_lbl+.collapsible-content {
    /* max-height: 500px; */
    max-height: 1000px;
    padding: 0px 16% 45px 0;
}

.Collapsible_btn span svg {
    transition: transform 0.25s ease-in;
}

.toggle:checked+.Collapsible_lbl .Collapsible_btn span svg {
    transform: rotate(180deg);
}

.productMeta-SKU,
span.sku_number {
    margin: 0 0 1.6em 0;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0;
    text-transform: uppercase;
}

.text-subdued {
    color: var(--text-color-light);
}

.ProductMeta-Description {
    margin: 24px 0;
    text-align: left;
}

.wrap-description {
    word-break: break-word;
}

.wrap-description p:not(:last-child),
.wrap-description ul:not(:last-child),
.wrap-description ol:not(:last-child) {
    margin-bottom: 1.6em;
}

.wrap-description p {
    margin-bottom: 1.6em;
}

.wrap-description ul {
    padding-left: 15px;
}

.wrap-description li {
    padding: 5px 0;
    padding: 5px 0;
    list-style: disc;
}

.size-chart {
    color: var(--highlight-color-attention0);
    text-transform: uppercase;
    transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.15s ease;
    background: inherit;
    border: 0;
    cursor: pointer;
}

.size-chart:hover {
    color: var(--highlight-color-attention1);
}

/* related accessories part ******************************************* */
.related_accessories {
    overflow: hidden;
    grid-column: 1/span 2;
    color: var(--highlight-color-attention0);
    width: min(100vw-100px, 680px);
    padding: 36px 48px;
    margin-block-start: 1.5rem;
    background: linear-gradient(-52deg, hsl(41deg 93% 29% / 15%), black 18%, transparent, hsl(41deg 93% 29% / 39%));
    /* border: 1px solid #FFF; */
    box-shadow: 1px 1px 2px -2px #fff;
}

.related_accessories p {
    font-family: "Barlow Condensed", "Quicksand", sans-serif;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    margin-top: 2rem;
    font-weight: 600;
    padding: 0 0 15px 0;
    border-bottom: 2px solid var(--highlight-color-attention1);
}

.productListWrapper {
    margin-bottom: 15px;
}

.productItem__Wrapper::after {
    content: "";
    height: 2px;
    width: 30px;
    background: #FFF;
    margin: auto;
    margin-top: 5px;
}

.ProductList {
    display: grid;
    max-width: 100%;
    justify-content: space-around;
    grid-template-columns: 0.5fr 0.5fr;
    /* grid-template-columns: repeat(2,1fr); */
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.productItem__Wrapper {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: center; */
}

.ProductItem__Info {}

.ProductItem__Info .productMeta-title {
    display: block;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.ProductItem__Info a {
    text-decoration: none;
    color: inherit;
}

.product_ {
    max-width: 100%;
}

.ProductItem__Image {
    max-width: 100%;
}

/* for admin */
.add_product {
    height: 84%;
    border: 2px dashed;
    content: "Add Item From Database";
    margin-bottom: 10%;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* end of accessories related part ************************************* */
/* **************************************************************** */
/* media queries */
@media screen and (max-width: 1150px) {


    .StyledTitle,
    .view-product button,
    .look-items,
    .buy-Whole-Look button {
        font-size: calc(var(--interactive-btn-font-size)*1.4);
    }

    .look-items ul li {
        font-size: calc(var(--interactive-btn-font-size)*1.3);
    }

    .view-product button svg {
        width: calc(var(--interactive-btn-font-size)*1.4);
        margin-right: 10px;
    }
}

@media screen and (max-width: 1000px) {
    .interact-buttons {
        grid-column: 1/span 1;
        /* top: 47vh; */
        top: unset;
        bottom: 18vh;
        left: 2vw;
        right: none;
    }
}

@media screen and (max-width: 950px) {

    .product-content {
        /* max-height: 64vh; */
    }

    .img-story-header {
        font-size: 1.5rem;
    }

    .img-story-intro {
        font-size: 0.75rem;
    }

}

@media screen and (max-width: 700px) {

    .doc-grid {
        padding: 36px 7px;
        grid-template-columns: 1fr;
    }

    .doc-grid .product-content {
        max-height: fit-content;
        overflow-y: hidden;
        border-radius: 8px;
        display: block;
    }

    .Product-Asidee {
        grid-column: auto;
    }

    .related_accessories {
        grid-column: auto;
    }

    .img-story {
        margin-inline-start: -20px;
    }

    .img-story-header {
        font-size: 1.25rem;
    }

    .img-story-intro {
        font-size: 0.7rem;
    }

    .img-story-intro::before {
        width: max(2%, 14px);
        margin-right: 10px;
        background: linear-gradient(135deg, #deeaef, transparent 90%);
    }

    .nav-bar-top .brand {
        font-size: 1.2rem;
    }

    .StyledTitle,
    .view-product button,
    .look-items,
    .buy-Whole-Look button {
        font-size: calc(var(--interactive-btn-font-size)*1.2);
    }

    .look-items ul li {
        font-size: calc(var(--interactive-btn-font-size)*1.15);
    }

    .view-product button svg {
        width: calc(var(--interactive-btn-font-size)*1.2);
        margin-right: 10px;
    }
}

@media screen and (max-width: 512px) {
    :root {
        --min-width-interactive-window: min(225px, 100%)
    }

    .interact-buttons {
        left: -4.55vw;
    }
}

@media screen and (min-height: 950px) and (max-width: 952px) {
    :root {
        --min-width-interactive-window: min(225px, 100%)
    }

    .interact-buttons {
        /* top: 20vh;
        right: 2vw;
        left: unset;
        right: unset; */
    }
}

@media screen and (max-height: 950px) and (min-width: 952px) {
    :root {
        --min-width-interactive-window: min(225px, 100%)
    }

    .interact-buttons {
        grid-column: 3/span 1;
        top: 20vh;
        right: 2vw;
        left: unset;
    }
}

@media screen and (max-height: 644px) and (min-width: 800px) {
    :root {
        --min-width-interactive-window: min(225px, 100%)
    }

    .interact-buttons {
        grid-column: 3/span 1;
        top: 20vh;
        right: 2vw;
        left: unset;
    }
}