.website section .section-item .text-side form[data-elementtype="PRODUCT"]{
    --product-title-color: black;
    --product-sub-title-color: #616161;
    --product-price-color: black;
    --product-paragraph-color: #616161;
    --product-spacing-top: 10px;
    --product-spacing-bottom: 10px;
    --product-btn-bg-color: #47B7F7;
    --product-btn-text-color: white;

    font-family: inherit;
    margin-top: var(--product-spacing-top);
    margin-bottom: var(--product-spacing-bottom);
    width: 100%;
    display: flex;
    gap: 60px;
}



.website .title-typography-p1 {
    font-family: var(--title-typography-preset-1-font-family);
}
.website .title-typography-p2 {
    font-family: var(--title-typography-preset-2-font-family);
}
.website .title-typography-p3 {
    font-family: var(--title-typography-preset-3-font-family);
}
.website .subtitle-typography-p1 {
    font-family: var(--subtitle-typography-preset-1-font-family);
}
.website .subtitle-typography-p2 {
    font-family: var(--subtitle-typography-preset-2-font-family);
}
.website .subtitle-typography-p3 {
    font-family: var(--subtitle-typography-preset-3-font-family);
}
.website .body-typography-p1 {
    font-family: var(--body-typography-preset-1-font-family);
}
.website .body-typography-p2 {
    font-family: var(--body-typography-preset-2-font-family);
}
.website .body-typography-p3 {
    font-family: var(--body-typography-preset-3-font-family);
}
.website .button-typography-p1 {
    font-family: var(--button-typography-preset-1-font-family);
}
.website .button-typography-p2 {
    font-family: var(--button-typography-preset-2-font-family);
}
.website .button-typography-p3 {
    font-family: var(--button-typography-preset-3-font-family);
}


.website .products-cart {
    cursor: default;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 40vw;
    max-width: 600px;
    min-width: 400px;
    position: fixed;
    z-index: 1100;
    background: white;
    box-sizing: border-box;
    padding: 30px 0 20px 40px;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    top: 0;
    right: 0;
}
.website .products-cart.open{
    transform: translateX(0);
}

.website .cart-backdrop {
    z-index: 1099;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #00000080;
}

.website .products-cart .products-cart-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #1E1E1E;
    padding-right:37px;
    box-sizing: border-box;
    font-size: 16px;
}

.website .products-cart .products-cart-header .title {
    font-size: 20px;
    font-weight: bold;
}

.website .products-cart .products-cart-header .close-icon{
    cursor: pointer;
    transform: scale(0.7);
}

.website .products-cart .products-cart-header .close-icon:hover svg rect {
    fill: #616161;
}

.website .products-cart .products-cart-main {
    display: flex;
    flex:1;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 0 20px 0;
}

.website .products-cart .products-cart-main .empty-cart-container{
    display: flex;
    gap: 20px;
    width: 100%;
    height: 100%;
    padding-right: 40px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.website .products-cart .products-cart-main .empty-cart-container .empty-msg{
    color: black;
    padding-bottom:10px;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid black;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

.website .cart-notification-container {
    z-index: 1100;
    position: fixed;
    right: 10px;
    background-color: white;
    padding:20px;
    display: flex;
    flex-direction: column;
    gap:20px;
    min-width: 320px;
    animation-name: fadeIn;
    animation-duration: 300ms;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.website .cart-notification-container.remove{
    animation-name: fadeOut;
    animation-duration: 300ms;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.website .cart-notification-container .top-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.website .cart-notification-container .top-section .top-section-title-container {
    display: flex;
    align-items: center;
    gap:10px;
}

.website .cart-notification-container .top-section .top-section-title-container .top-title {
    color: black;
    font-size: 16px;
    font-weight: bold;
}
.website .cart-notification-container .top-section .view-bag-sub-title {
    color: #616161;
    font-size: 12px;
    background-color: transparent;
    font-weight: normal;
}

.website .cart-notification-container .top-section .top-section-title-container .top-title {
    color: black;
    font-size: 16px;
    font-weight: bold;
}

.website .cart-notification-container .middle-section {
    display: flex;
    flex-direction: row;
    gap:20px;
}

.website .cart-notification-container .middle-section .product-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 1px solid #A8A8A8;
}

.website .cart-notification-container .middle-section .text-container {
    display: flex;
    gap:20px;
    flex-direction: column;
}

.website .cart-notification-container .middle-section .text-container .bold {
    font-weight: bold;
}

.website .cart-notification-container .text-container .max-w-200 {
    max-width: 200px;
}

.website .cart-notification-container .text-container .normal {
    font-weight: normal;
}
.website .cart-notification-container .text-container .large-text{
    font-size: 16px;
}
.website .cart-notification-container.text-container .normal-text{
    font-size: 14px;
}

.website .cart-notification-container .check-out-btn {
    color:white;
    background-color: #47B7F7;
    width: 100%;
    padding:16px 20px;
    font-size: 16px;
}

.website .products-cart .products-cart-main .empty-cart-container .continue-shopping{
    color: #616161;
    font-size: 16px;
    cursor: pointer;
}
.website .products-cart .products-cart-main .empty-cart-container .continue-shopping:hover{
    color: #575757;
}

.website .products-cart .products-cart-main .items-list{
    list-style-type: none;
    margin:0;
    width: 100%;
    height: 60vh;
    overflow: auto;
    display: flex;
    box-sizing: border-box;
    padding: 0 40px 0 0;
    flex-direction: column;
}

.website .products-cart .products-cart-main .items-list .list-item {
  display: flex;
  gap:20px;
  flex-direction: row;
  padding-bottom: 25px;
  padding-top: 25px;
  border-bottom: 1px solid #C7C7C7;
}

.website .products-cart .products-cart-main .items-list .list-item:first-child{
    padding-top: 10px;
}

.website .products-cart .products-cart-main .items-list .list-item .product-image{
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 1px solid #A8A8A8;
}

.website .products-cart .products-cart-main .items-list .list-item .section-mid{
    display: flex;
    flex:1;
    flex-direction: column;
    padding: 10px 0;
    gap: 5px;
}

.website .products-cart .products-cart-main .items-list .list-item .section-mid .title{
    font-size: 16px;
    font-weight: bold;
}

.website .products-cart .products-cart-main .items-list .list-item .section-mid .sub-title{
    font-size: 14px;
}

.website .products-cart .products-cart-main .items-list .list-item .section-mid .quantity-selector{
    order:1;
    margin-top: auto;
}
.website .products-cart .products-cart-main .items-list .list-item .section-mid .quantity-selector input{
    width: 58px;
}

.website .products-cart .products-cart-main .items-list .list-item .section-end {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px 0;
}

.website .products-cart .products-cart-main .items-list .list-item .section-end .price{
   font-size: 16px;
   font-weight: bold;
}

.website .products-cart .products-cart-main .items-list .list-item .section-end .remove-btn{
    background: transparent;
    font-size: 14px;
    font-weight: bold;
    color: #ED4141;
}
.website .products-cart .products-cart-main .items-list .list-item .section-end .remove-btn:hover{
    color: #c11212;
}


.website .products-cart .products-cart-main .sum-section {
    display: flex;
    flex-direction: column;
    gap:20px;
    padding-right: 40px;
    box-sizing: border-box;
}

.website .products-cart .products-cart-main .sum-section .head-section{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.website .products-cart .products-cart-main .sum-section .head-section .title-section{
    display: flex;
    flex-direction: column;
    color: black;
    font-size: 16px;
    gap:10px;
}

.website .products-cart .products-cart-main .sum-section .head-section .title-section .subtotal{
    font-size: 20px;
    font-weight: bold;
}

.website .products-cart .products-cart-main .sum-section .head-section .title-section .sub-title{
    font-size:14px;
    color: #ABABAB;
}

.website .products-cart .products-cart-main .sum-section .head-section .price{
   display: flex;
    align-items: flex-start;
    font-size: 16px;
    font-weight: bold;
}

.website .products-cart .products-cart-main .sum-section .checkout-btn{
    background-color: var(--product-btn-bg-color, #47B7F7);
    color: var(--product-btn-text-color, white);
    font-size: 16px;
    padding:20px;
}


.website .products-cart .products-cart-main .sum-section .continue-shopping{
    color: #35A1DF;
    font-size: 14px;
    cursor: pointer;
    align-self: center;
}

.website .products-cart .products-cart-main .sum-section .continue-shopping:hover{
    color: #1e84bf;
}

.website section .section-item .text-side form[data-elementtype="PRODUCT"] .product-item-hidden{
    display: none;
}

.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side{
    flex:1;
    text-align: start;
}

.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.image-side{
    display: flex;
    flex-direction: row;
    gap:20px;
}
.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.image-side .current-image{
    display: flex;
    max-width: 100%;;
    min-width: 150px;
    min-height: 150px;
    overflow: hidden;
    object-fit: contain;
    object-position: top;
}
.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.image-side .placeholder-img{
    display: flex;
    background-color: lightgrey;
    max-width: 100%;
    min-width: 150px;
    min-height: 150px;

    align-items: center;
    justify-content: center;
    flex:1;
}

.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.image-side .placeholder-img svg {
    width: 50px;
}

.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.image-side .image-list{
    display: flex;
    flex-direction: column;
    list-style-type: none;
    gap: 5px;
    padding: 0;
    margin: 0;

}

.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.image-side .image-list .image-list-item{
    width: 100px;
    height: 100px;
    cursor: pointer;
}
.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.image-side .image-list .image-list-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.details-side{
        display: flex;
        flex-direction: column;
        gap:20px;
}

.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.details-side .divider{
    border: none;
    height: 1px;
    margin: 0;
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.12);
}


.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.details-side .variant-container-wrap{
    display: flex;
    flex-direction:column;
    gap: 20px;
}

.website .quantity-selector{
    font-size: 16px;
    gap:5px;
    display: flex;
    align-items: center;
}

.website .quantity-selector span{
    font-size: 14px;
    font-weight: normal;
    color:#616161;
}

.website .quantity-selector input {
   background-color: transparent;
    border: 1px solid #e1e1e1;
    color: var(--product-price-color);
    border-radius: 4px;
    padding: 8px 10px;
    outline: none;
    width: 70px;
    box-sizing: border-box;
}

.website .quantity-selector:hover input{
    border: 1px solid #9A9A9A;
}


.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.details-side .variant-container-wrap .variant-container{
    display: flex;
    flex-direction:column;
    gap: 20px;
}
.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.details-side .variant-container-wrap .variant-container .label{
    font-size: 14px;
    color:#616161;
}

.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.details-side .variant-container-wrap .variant-container .variant-btns-group{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
}
.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.details-side .variant-container-wrap .variant-container .variant-btns-group .variant-btn{
    padding: 10px 17px;
    border-radius: 5px;
    font-family: inherit;
    background-color: transparent;
    font-size:16px;
    border: 1px solid #D8D8D8;
    outline: none;
    font-weight: normal;
    cursor: pointer;
    align-self: flex-start;
    flex-wrap: wrap;
}
.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.details-side .variant-container-wrap .variant-container .variant-btns-group .variant-btn:hover,
.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.details-side .variant-container-wrap .variant-container .variant-btns-group .variant-btn.selected{
    border: 1px solid #000;
}


.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.details-side .title{
    font-size: 30px;
    font-weight: 600;
    color: var(--product-title-color);
}
.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.details-side .sub-title{
    font-size: 16px;
    font-weight: 400;
    color: var(--product-sub-title-color);
}
.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.details-side .price{
    font-size: 16px;
    font-weight: 700;
    color: var(--product-price-color);
}
.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.details-side .paragraph{
    font-size: 14px;
    font-weight: 400;
    color: var(--product-paragraph-color);
}
.website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.details-side button.add-btn{
    background-color: var(--product-btn-bg-color);
    color: var(--product-btn-text-color);
    font-size: 16px;
    font-weight: bold;
    padding:16px 20px;
}

.website section .section-item .text-side form[data-elementtype="PRODUCT"][data-preset="product_preset_1"] {
    flex-direction: row;
}

.website section .section-item .text-side form[data-elementtype="PRODUCT"][data-preset="product_preset_2"] {
    flex-direction: row-reverse;
}


@media only screen and (max-width: 680px) {
    .website section .section-item .text-side form[data-elementtype="PRODUCT"]{
        flex-direction: column !important;
    }
    .website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.image-side{
        flex-direction: column-reverse;
    }
    .website section .section-item .text-side form[data-elementtype="PRODUCT"] .side.image-side .image-list{
        flex-direction: row;
        flex-wrap: wrap;
    }
}
