.prodDets {
    width: 100%;
    height: 100svh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: 0.25s ease-out;
    padding: 30px 8px 70px 8px;
    display: none;
    overflow: auto;
}

.pDetsArea {
    width: 500px;
    min-width: 500px;
    height: fit-content;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    border-radius: var(--borderRadius1);
    border: 1px solid var(--borderBlk);
    box-shadow: var(--shadow1);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: toUp .25s ease-out;
}

@keyframes toUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.detsCloseButton {
    width: fit-content;
    height: fit-content;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: -35px;
    opacity: 0.75;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
}

.detsCloseButton>svg {
    width: 27px;
    height: 27px;
    stroke-width: 1.5;
    display: block;
    color: var(--primClr1);
    color: white;
}

.imagesArea {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 24px;
}

.mainImageArea {
    width: 470px;
    height: 470px;
    background-color: antiquewhite;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--borderRadiusInside1);
    border: 1px solid var(--borderBlk);
}

.mainImageArea>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mainImageArea>.mainImageArt {
    width: 80%;
    height: 80%;
    object-fit: contain;
    rotate: -15deg;
    transition: 0.2s ease-out;
    filter: drop-shadow(0 0px 15px rgba(186, 90, 135, 0.3));
}

.fellowImages {
    display: flex;
    gap: 11px;
}

.fellowImages>button {
    width: 65px;
    height: 65px;
    border: none;
    background-color: antiquewhite;
    cursor: pointer;
    border-radius: var(--borderRadiusInside1);
    border: 1px solid var(--borderBlk);
}

.fellowImages>button>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--borderRadiusInside1);
}

.fellowImages>button>#theMainImage {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

#prodName {
    font-family: var(--font1);
    font-size: 23px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    color: rgb(15, 15, 15);
    margin-bottom: 15px;
}

#prodPrice {
    font-family: var(--font1);
    font-size: 27px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    color: var(--primClr1);
    margin-bottom: 5px;
}

#prodOldPrice {
    font-family: var(--font1);
    font-size: 17px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    color: var(--primClr3);
    text-decoration: line-through;
    margin-bottom: 15px;
}

#prodStarsDet {
    display: flex;
    align-items: center;
    gap: 1px;
    line-height: 0.75;
    font-size: 21px;
    margin-bottom: 13px;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.175);
    color: gold;
}

.quantity{
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.quantity>p{
    font-family: var(--font1);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.quantity>button{
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: none;
    background-color: var(--primClr1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity>button>svg{
    color: white;
    width: 60%;
    height: auto;
}

.quantity>input{
    text-align: center;
    width: 37px;
    height: 30px;
    width: 37px;
    border-radius: var(--borderRadiusInside1);
    border: 1px solid var(--borderBlk);
    font-family: var(--font1);
    font-size: 90%;
}

.quantity>input::-webkit-outer-spin-button,
.quantity>input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#product-attributes{
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

#product-attributes>span{
    font-family: var(--font1);
    font-size: 11px;
    font-weight: 500;
    width: fit-content;
    letter-spacing: 0.5px;
    line-height: 1.5;
    color: white;
    padding: 4px 9px;
    border-radius: var(--borderRadiusInside1);
    background-color: var(--primClr2);
}

#prodBulletPoints {
    font-family: var(--font1);
    font-size: 15px;
    font-weight: 400;
    width: 90%;
    max-width: 750px;
    letter-spacing: 0.5px;
    line-height: 1.5;
    list-style-position: inside;
    margin-bottom: 24px;
}

#prodDescription {
    font-family: var(--font1);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 11px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#prodDescription>ul{
    list-style: inside;
}

.accProceedBuyButton {
    height: 40px;
    width: auto;
    border: none;
    justify-content: center;
    align-items: center;
    border-radius: var(--borderRadiusInside1);
    cursor: pointer;
    font-family: var(--font1);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    background-color: var(--primClr1);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accBtnLoading{
    width: fit-content;
    height: fit-content;
    margin-bottom: -5px;
}

.accBtnLoading>svg{
    width: 27px;
    height: 27px;
}

@media only screen and (max-width: 576px) {
    .pDetsArea {
        width: 350px;
        min-width: 350px;
        padding: 11px;
    }

    .detsCloseButton {
        top: 5px;
        right: 5px;
    }

    .detsCloseButton>svg {
        width: 23px;
        height: 23px;
    }

    .mainImageArea {
        width: 328px;
        height: 328px;
    }

    .fellowImages>button {
        width: 50px;
        height: 50px;
    }

    #prodName {
        font-size: 19px;
    }

    #prodPrice {
        font-size: 23px;
    }

    #prodOldPrice {
        font-size: 15px;
    }

    #prodStarsDet {
        font-size: 19px;
    }

    #prodBulletPoints {
        font-size: 14px;
    }

    #prodDescription {
        font-size: 13px;
    }

    .accProceedBuyButton {
        font-size: 14px;
    }
}

