.product-info {
    display: flex;
    gap: 30px;
    margin: 50px 0;
    align-items: flex-start
}

.product-images {
    width: 460px;
    flex-shrink: 0;
    position: sticky;
    top: 20px
}

.product-images .swiper-wrapper {
    align-items: center
}

.product-main {
    flex-grow: 1;
    position: sticky;
    top: 20px
}

.product-side {
    flex-shrink: 0;
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.side-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--step);
    padding: 15px;
    border-radius: 5px
}

.side-details p {
    color: var(--text);
    font-size: 12px
}

.side-details p u {
    text-decoration: none
}

.details-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    user-select: none
}

.details-head.open {
    margin: 0 -15px 15px;
    padding: 0 15px 15px;
    border-bottom: 1px solid var(--shadow)
}

.details-head.open:before {
    display: none
}

.details-head h2 {
    font-size: 12px;
    color: var(--head);
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    background-color: var(--light);
    width: max-content;
    order: -1;
    flex-shrink: 0
}

.details-head:before {
    content: "";
    width: 100%;
    background: var(--step);
    height: 1px
}

.details-head h2:before,
.seller-details h2:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url("") no-repeat center center/contain
}

.details-head:after {
    content: "\e952";
    font-family: icons;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    color: var(--text-light);
    border: 1px solid;
    position: relative;
    font-size: 8px;
    flex-shrink: 0;
    transition: .1s;
    align-items: center;
    justify-content: center;
    display: flex;
    padding-top: 2px
}

.details-head.open:after {
    content: "\e951";
    padding-top: 0
}

.shipping-details .details-head h2:before {
    background-image: url(/assets/images/prod-shipping.svg)
}

.delivery-details .details-head h2:before {
    background-image: url(/assets/images/prod-delivery.svg)
}

.return-details .details-head h2:before {
    background-image: url(/assets/images/prod-return.svg)
}

.seller-details h2:before {
    background-image: url(/assets/images/stores.svg)
}

.details-content {
    display: none
}

.side-details p b {
    color: var(--dark)
}

.side-details p a {
    text-decoration: underline
}

.product-side .side-details>span {
    color: var(--dark)
}

[data-country] {
    display: inline-flex;
    gap: 4px;
    font-weight: 600;
    line-height: 1.3em;
    font-size: 12px;
    text-decoration: none
}

[data-country] img {
    width: 15px;
    height: 15px;
    border-radius: 99px
}

.seller-badge {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 10px;
    line-height: 100%;
    align-items: center
}

.seller-avatar {
    width: 40px;
    height: 40px;
    grid-row: 1/3;
    border-radius: 100%;
    position: relative
}

.seller-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    pointer-events: none;
    object-fit: cover;
}

.seller-badge b {
    color: var(--head);
    word-break: break-word;
    display: block;
}

.seller-badge span {
    font-size: 12px;
    align-self: flex-start;
}

.seller-actions {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid var(--shadow);
    padding-top: 20px
}

.admin-actions button {
    padding: 10px;
    border-radius: 5px;
    color: var(--text);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--shadow)
}

.admin-actions button:hover {
    background-color: var(--shades)
}

.admin-actions button:before {
    font-family: icons
}

.admin-actions button[data-type="revise"]:before {
    content: "\e966"
}

.admin-actions button[data-type="duplicate"]:before {
    content: "\e99a"
}

.admin-actions button[data-type="end"]:before {
    content: "\eafc"
}

.seller-status {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute !important;
    bottom: -6px;
    inset-inline-start: 0;
    border-radius: 100px;
    border: 5px solid var(--light)
}

.seller-status[data-status=online] {
    background-color: #57c100
}

.seller-status[data-status=offline] {
    background-color: #939393
}

.seller-row {
    display: flex;
    gap: 5px;
    font-size: 12px;
    line-height: 100%;
    align-items: center;
    color: var(--head);
    cursor: default;
    width: max-content;
    max-width: 100%
}

.seller-row:before {
    font-family: icons
}

.seller-row.seller-joined:before {
    content: "\e981"
}

.seller-row.seller-location:before {
    content: "\e926"
}

.seller-row.seller-lastonline:before {
    content: "\e999"
}

.seller-row.seller-location img {
    display: none
}

.seller-info {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    flex-direction: column
}

.seller-actions a,
.seller-actions button {
    /* color: var(--text); */
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 100%;
    text-align: center;
    width: 100%;
    border-radius: 100px;
    font-size: 12px;
    /* font-weight: 600; */
    border: 1px solid var(--shadow)
}

.seller-actions a:hover,
.seller-actions button:hover {
    color: var(--dark);
    border-color: var(--text-light)
}

.seller-row b {
    color: var(--head)
}

.product-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 5px;
    margin-bottom: 10px;
    color: var(--text-light)
}

.product-breadcrumbs i {
    font-style: normal;
    font-family: monospace
}

.product-breadcrumbs a:hover {
    text-decoration: underline;
    color: var(--head)
}

h1.product-name {
    color: var(--dark);
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.5em;
    word-break: break-word
}

.product-details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px
}

.product-details li {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text);
    background-color: var(--back);
    border-radius: 100px;
    padding-inline-start: 10px
}

.product-details li b {
    line-height: 100%;
    background-color: var(--shadow);
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 12px
}

.product-type {
    display: flex;
    align-items: center;
    background-color: var(--step-shade);
    height: 35px;
    padding: 0 10px;
    border-radius: 5px;
    color: var(--key-dark);
    font-weight: 600;
    gap: 10px;
    display: none
}

.product-type:before {
    content: "";
    background: no-repeat center/contain;
    width: 20px;
    height: 20px
}

.product-type[data-type="fixed price"]:before {
    background-image: url(/assets/images/sell/type-fixed.svg) !important
}

.product-type[data-type=bookable]:before {
    background-image: url(/assets/images/sell/type-bookable.svg) !important
}

.product-type[data-type=auction]:before {
    background-image: url(/assets/images/sell/type-auction.svg) !important
}

.product-type:after {
    content: attr(data-type);
    text-transform: capitalize
}

.product-costs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 30px;
    margin-bottom: 20px
}

.product-price {
    display: flex;
    flex-direction: column
}

.product-price b {
    font-size: 24px;
    color: var(--key)
}

.product-price span {
    font-weight: 500;
    color: var(--red-dark)
}

.details-item {
    display: flex;
    flex-direction: column
}

.details-item b {
    color: var(--text);
    font-size: 18px
}

.product-sale {
    display: flex;
    flex-direction: column;
    line-height: 100%;
    gap: 4px;
    margin-inline-start: -15px
}

.product-reviews {
    margin-inline-start: auto;
    display: flex;
    align-items: center;
    gap: 10px
}

.product-reviews div {
    color: var(--text)
}

.p-stars {
    position: relative;
    height: 1em;
    line-height: 100%;
    width: 5em
}

.p-stars:before,
.p-stars:after {
    font-family: icons;
    position: absolute;
    inset: 0;
    flex-shrink: 0
}

.p-stars:before {
    content: "\e93a\e93a\e93a\e93a\e93a"
}

.p-stars:after {
    content: "\e939\e939\e939\e939\e939";
    color: var(--key);
    max-width: var(--perc);
    overflow: hidden
}

.product-sale span {
    font-weight: 600;
    color: var(--red-dark)
}

.product-values-thumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.product-values-thumb span {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    overflow: hidden;
    cursor: pointer;
    border: 4px solid transparent
}

.product-values-thumb span img {
    width: 100%;
    height: 100%
}

.product-values-thumb span.active {
    border-color: var(--step)
}

.product-values {
    display: flex;
    gap: 10px
}

.product-values span {
    background-color: var(--shades);
    border-radius: 3px;
    line-height: 100%;
    padding: 10px 12px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    font-size: 12px;
    text-transform: capitalize
}

.product-values span.active {
    background-color: var(--head);
    color: var(--light)
}

.product-options {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.product-variations {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px
}

.product-variations:before {
    content: attr(data-label);
    text-transform: capitalize;
    color: var(--text)
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    border-radius: 5px
}

.book-msg {
    width: 100%
}

.book-msg abbr {
    font-weight: 600
}

.accept-terms {
    display: flex;
    width: 100%;
    gap: 10px;
    color: var(--text)
}

.accept-terms input:checked+span {
    color: var(--key)
}

.accept-terms a {
    font-weight: 600
}

.accept-terms a:hover {
    text-decoration: underline
}

.base-action {
    background-color: var(--key);
    color: #fff
}

.buy-now {
    background-color: var(--green-dark);
    color: #fff
}

button.follow-product.follow {
    color: var(--green);
    border-color: currentColor;
    height: 40px
}

button.follow-product.follow:before {
    content: "\e9c4"
}

button.follow-product.follow:after {
    content: attr(data-count);
    background-color: var(--green-shade);
    display: block;
    border-radius: 100px;
    padding: 5px;
    color: var(--green-dark)
}

.likes {
    background-color: transparent;
    color: var(--red);
    border-color: var(--red) !important
}

.product-actions button.share-product {
    background-color: transparent;
    color: var(--text);
    border: none;
    padding: 0
}

button.share-product:before {
    content: "\e9b9"
}

.quantity-wrap {
    width: 100%;
    display: flex
}

.alert.return-alert {
    max-width: 350px;
    margin: 20px 0 0;
    padding: 0;
    background-color: transparent;
    color: var(--red);
}

.quantity,
.no-stock {
    margin-inline-start: auto;
    display: flex;
    align-items: center;
    gap: 5px
}

.quantity button {
    font-size: 20px;
    border-radius: 100%;
    background-color: var(--shades);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text)
}

.quantity button:hover {
    background-color: var(--shadow)
}

.quantity button:first-of-type {
    order: 0
}

.quantity button:last-of-type {
    order: 2
}

.quantity:before {
    content: attr(data-count);
    width: 20px;
    text-align: center;
    color: var(--dark);
    order: 1;
    font-weight: 600
}

.quantity:after {
    content: attr(data-remain) " " attr(data-label);
    color: var(--text);
    font-weight: 600;
    order: 4
}

.actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.actions-row.sub-row {
    justify-content: flex-end;
}

.product-actions button {
    font-weight: 600;
    padding: 12px 15px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: .9;
    border: 1px solid rgb(0 0 0/5%);
    text-transform: uppercase
}

.product-actions button:hover {
    opacity: 1
}

.product-actions button:active {
    transform: scale(.95)
}

.actions-row.sub-row button {
    font-size: 12px;
    padding: 5px 10px;
    height: auto;
}

.product-actions button:before {
    font-family: icons;
    font-weight: 400;
    font-size: 18px
}

.add-to-cart:before {
    content: "\e961"
}

.book-now:before {
    content: "\e92d"
}

.place-bid:before {
    content: "\e962"
}

.buy-now:before {
    content: "\e916"
}

.likes:before {
    content: "\e91b"
}

.watching {
    display: flex;
    align-items: stretch;
    border: 2px solid var(--shades);
    height: 40px;
    border-radius: 5px
}

.watching button:before {
    content: "\e91a";
    font-family: icons;
    font-size: 16px
}

.watching button {
    display: flex;
    align-items: center;
    font-weight: 500;
    gap: 5px;
    padding: 0 9px
}

.watching:after {
    content: attr(data-watching);
    font-weight: 600;
    color: var(--text);
    background-color: var(--shades);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.main-image {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid var(--shadow)
}

.main-image img {
    margin: 0 auto;
    width: 100%;
    height: 100%
}

.main-image video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.swipper-nav button {
    font-family: icons;
    background-color: rgb(255 255 255 / 80%);
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 100px;
    font-size: 12px;
    position: absolute;
    top: 50%;
    z-index: 2;
    transition: .1s;
    display: flex;
    align-items: center;
    justify-content: center
}

.swipper-nav button:hover {
    background-color: #FFF;
    color: #000;
    transform: scale(1.2);
}

[dir=ltr] .image-prev:before,
[dir=rtl] .image-next:before {
    content: "\e953"
}

[dir=ltr] .image-next:before,
[dir=rtl] .image-prev:before {
    content: "\e954"
}

.swipper-nav button.swiper-button-disabled {
    display: none;
}

.main-image .image-prev {
    inset-inline-start: 20px
}

.main-image .image-next {
    inset-inline-end: 20px
}

.product-thumbs ul {
    display: flex;
    align-items: center
}

.product-thumbs img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    border: 1px solid var(--shadow);
    object-fit: cover;
}

.product-bottom {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(12, 1fr);
    align-items: flex-start
}

.product-tabs {
    grid-column: 1/10
}

.tabs-switch {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--back);
    height: 60px
}

.tabs-switch button {
    font-size: 16px;
    color: var(--head);
    font-weight: 500;
    padding: 15px min(5vw, 30px);
    flex-shrink: 0;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px
}

.tabs-switch button.active {
    color: var(--key);
    border-color: var(--head);
    font-weight: 600
}

.product-description {
    border: 1px solid var(--shades);
    padding: min(2vh, 30px);
    overflow: hidden;
    word-break: break-word;
    max-width: 90vw;
}

.product-description strong,
.product-description b {
    font-weight: 600
}

.product-description img {
    display: initial;
}

.tabs-content {
    position: relative
}

.tabs-content [data-tab] {
    display: none
}

.recommended {
    grid-column: 10/13;
    position: sticky;
    top: 0;
    min-width: 300px
}

.recommended h2 {
    font-size: 16px;
    color: var(--head);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--back);
    height: 60px
}

.recommended h2:before {
    content: "\e939";
    font-family: icons;
    font-weight: 400;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 12px;
    line-height: 100%;
    flex-shrink: 0;
    background-color: var(--key);
    color: #fff
}

.recommended ul {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.recommended li {
    display: grid;
    grid-template: auto auto/auto 1fr;
    align-items: center;
    gap: 0 15px
}

.rec-thumb {
    grid-row: 1/3;
    width: 80px;
    height: 80px;
    border-radius: 5px;
    border: 1px solid var(--shadow);
    flex-shrink: 0
}

.rec-name {
    font-weight: 500;
    color: var(--text);
    font-size: 14px;
    line-height: 1.2em;
    transition: .2s;
    word-break: break-word
}

.rec-name:hover {
    color: var(--head)
}

.rec-details {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.rec-price {
    color: var(--key);
    font-weight: 600;
    font-size: 16px
}

.rec-sales:before {
    content: attr(data-sales);
    font-weight: 600
}

.rec-sales {
    color: var(--text);
    background-color: var(--shades);
    line-height: 100%;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px
}

.similiar-products {
    margin-top: 50px
}

.similiar-products .swiper-slide {
    display: flex;
    flex-direction: column;
    width: 200px;
    position: relative
}

.sim-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.sim-head h2 {
    color: var(--head);
    font-size: 20px;
    flex-shrink: 0;
    margin-inline-end: 20px
}

.sim-head:after {
    content: "";
    height: 1px;
    background-color: var(--step);
    width: 100%
}

.sim-nav {
    flex-shrink: 0;
    margin-inline-start: 30px;
    order: 2
}

.similiar-products .p-thumb {
    border: 1px solid var(--shadow)
}

.place-bid-form {
    display: flex;
    align-items: center;
    border: 2px solid var(--green-dark);
    border-radius: 5px;
    height: 50px;
    padding: 0 15px;
    width: 270px
}

.place-bid-form span:before {
    content: "\e963";
    font-family: icons;
    font-size: 18px;
    color: var(--green-dark)
}

.place-bid-form input {
    border: none;
    padding: 0 10px;
    width: 140px;
    font-weight: 600;
    font-size: 16px
}

.place-bid-form button {
    color: var(--green-dark);
    font-weight: 600
}

.place-bid-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.counters {
    display: flex;
    gap: 10px
}

.counters span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center
}

.counters span:before {
    content: attr(data-label);
    font-size: 12px
}

.counters span:after {
    content: attr(data-count);
    width: 30px;
    height: 30px;
    border-radius: 3px;
    background-color: var(--shadow);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark)
}

.product-remaining {
    margin-bottom: 30px
}

.product-remaining b {
    color: var(--text)
}

.reviews-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 50px;
    margin-bottom: 30px
}

.reviews-result {
    display: flex;
    flex-direction: column;
    align-items: center
}

.reviews-result>b {
    font-size: 40px;
    color: var(--key);
    line-height: 100%
}

.reviews-result i {
    font-style: normal;
    color: var(--text)
}

.reviews-result .p-stars {
    font-size: 24px;
    width: 120px;
    height: 24px;
    margin: 10px 0
}

.reviews-result .p-stars:before,
.reviews-result .p-stars:after {
    color: var(--step)
}

ul.reviews-summary {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.reviews-summary li {
    display: flex;
    align-items: center;
    gap: 10px
}

.reviews-summary u {
    text-decoration: none;
    width: 50px
}

.reviews-summary b {
    color: var(--text)
}

.reviews-summary span {
    width: 60vw;
    max-width: 360px;
    position: relative;
    height: 12px;
    border-radius: 100px;
    background-color: var(--shades);
    overflow: hidden
}

.reviews-summary span:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(45deg, var(--key), var(--step));
    max-width: var(--perc)
}

.reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.reviews-head h3 {
    font-size: 20px
}

.reviews-head select {
    height: 35px;
    background-color: var(--shades);
    border-radius: 5px;
    padding: 0 10px;
    border: 1px solid var(--shadow);
    cursor: pointer;
    color: var(--text);
    font-weight: 500
}

.reviews-head select option {
    background-color: var(--light);
    color: var(--text)
}

ul.users-reviews cite {
    display: grid;
    grid-template-columns: 50px 1fr;
    font-style: normal;
    gap: 0 15px;
    align-items: center;
    align-content: center;
    flex-shrink: 0;
    grid-row: 1/3;
    width: 200px
}

ul.users-reviews cite img {
    grid-row: 1/3;
    width: 50px;
    height: 50px;
    border-radius: 100%
}

ul.users-reviews cite b {
    color: var(--head);
    line-height: 1.5em
}

ul.users-reviews cite time {
    font-size: 12px;
    align-self: flex-start
}

ul.users-reviews li {
    display: grid;
    grid-template: auto auto/auto auto;
    gap: 10px 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--shades);
    margin-bottom: 20px
}

ul.users-reviews li:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none
}

ul.users-reviews .p-stars {
    flex-shrink: 0;
    align-self: flex-end;
    margin: 10px 0 auto
}

ul.users-reviews li p {
    color: var(--dark);
    align-self: flex-start
}

@media all and (max-width: 1280px) {
    .product-info {
        flex-wrap: wrap;
        justify-content: center
    }

    .product-side {
        width: 100%;
        flex-direction: row;
        justify-content: center
    }

    .details-head h2 {
        grid-column: 1/3
    }

    .seller-actions {
        grid-row: 2/-1;
        grid-column: 2/3;
        flex-direction: row;
        gap: 10px;
        align-items: flex-end
    }

    .product-main {
        width: calc(100% - 490px)
    }

    .tabs-switch {
        gap: 0
    }

    .side-details {
        flex-grow: 1;
        width: calc(50% - 10px)
    }

    .details-content {
        display: block !important
    }

    .details-head:after {
        display: none
    }

    .product-images,
    .product-main {
        position: static
    }
}

@media all and (max-width: 960px) {
    .product-main {
        width: 100%;
        order: -1
    }

    .product-images {
        width: 100%;
        order: -1
    }

    .side-details {
        width: 100%
    }

    .product-bottom {
        display: flex;
        flex-wrap: wrap
    }

    .recommended {
        flex-grow: 1
    }

    .product-side {
        flex-wrap: wrap
    }
}

@media all and (max-width: 640px) {
    ul.users-reviews li {
        grid-template-columns: 1fr auto
    }

    ul.users-reviews cite {
        grid-row: 1/2
    }

    ul.users-reviews li p {
        grid-column: 1/3
    }

    .tabs-switch {
        width: 100%;
        overflow: auto hidden
    }
}

@media all and (max-width: 480px) {
    .side-details.seller-details {
        display: flex;
        flex-direction: column
    }
}

.product-actions.admin-actions button {
    background-color: var(--step);
    color: var(--dark)
}

.product-side .p-stored {
    position: static;
    cursor: default
}

.product-side .p-stored:after {
    transform: scale(1)
}

.lightbox .item-wrap {
    padding: 15px;
    border: 1px solid var(--shadow);
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    position: relative
}

.lightbox .item-thumb {
    width: 70px;
    height: 70px
}

.lightbox textarea {
    width: 100%;
    height: 100px;
    min-height: 100px;
    border: 1px solid var(--shadow);
    padding: 10px;
    color: var(--dark);
    transition: .1s;
    border-radius: 5px
}

.lightbox textarea:focus {
    border-color: var(--step)
}

.form-footer {
    display: flex;
    align-items: center;
    gap: 10px
}

.form-footer button {
    background-color: var(--shades);
    padding: 15px;
    border-radius: 5px;
    font-weight: 600;
    opacity: .9;
    transition: .1s
}

.form-footer button:hover {
    opacity: 1
}

.form-footer .submit-feedback {
    background-color: var(--key);
    color: var(--light);
    padding: 15px 20px
}

.form-footer .submit-message {
    background-color: var(--key);
    color: var(--light);
    padding: 15px 20px
}

.lightbox .item-wrap>h3 {
    width: 100%;
    top: -12px;
    background-color: #fff;
    width: max-content;
    padding: 0 10px;
    position: absolute;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400
}

label.contact-details {
    margin-bottom: 20px;
    display: block
}

.item-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px
}

.item-thumb {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center
}

.item-info {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 15px;
    color: var(--head);
    font-size: 12px
}

.item-info span {
    line-height: 1.3em
}

.item-info b {
    color: var(--key-dark)
}

.item-info b a:hover {
    text-decoration: underline
}

.shipping-details p span,
.delivery-details p span {
    font-weight: 600
}

.shipping-details p b {
    font-size: 14px;
    color: var(--blue)
}

.delivery-details p b {
    color: var(--blue)
}

details.delivery-more summary {
    text-align: start;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3em;
    cursor: pointer;
    user-select: none;
}

.delivery-more div {
    background-color: var(--shades);
    padding: 10px;
    margin-top: 10px
}

.protection-wrap {
    display: flex;
    align-items: center;
    gap: 0 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--light);
    background-color: var(--green-dark);
    padding: 12px;
    border-radius: 5px;
    line-height: 1.3em
}

.protection-details .details-head:before,
.protection-details .details-head:after {
    display: none
}

.protection-details .details-head {
    padding: 0;
    border: none !important;
    margin: 0;
    display: block
}

.protection-details.side-details {
    border: none;
    padding: 0
}

.protection-details .details-content {
    font-size: 12px;
    line-height: 1.5em;
    padding: 15px;
    background-color: var(--green-shade);
    border-radius: 5px
}

/* BEST OFFER */
button.best-offer {
    background-color: var(--step);
    color: var(--dark);
}

button.best-offer:before {
    content: "\e962";
}

form.best-offer-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.your-offer-wrap input {
    border: none;
    font-size: 30px;
    font-weight: 600;
    outline: none;
    width: 150px;
    line-height: 100%;
    height: auto;
    background: transparent;
    width: 100%;
}

.your-offer-wrap input::placeholder {
    font-size: 20px;
}

.your-offer {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.offer-message {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.offer-message b {
    margin-inline-start: auto;
    font-weight: normal;
}

.make-offer-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.make-offer-head i {
    font-style: normal;
}

button.submit-offer {
    background-color: var(--key);
    color: var(--light);
}

form.best-offer-form .alert {
    margin: 0;
    width: 100%;
}

.make-offer-head p {
    opacity: 0.7;
}

.form-footer button:disabled {
    background-color: var(--text-light);
}

.your-offer label {
    width: 100%;
    position: relative;
    border: 1px solid var(--shadow);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.your-offer label h3 {
    font-size: 14px;
    position: absolute;
    top: -10px;
    inset-inline-start: 20px;
    background-color: var(--light);
    padding: 0 10px;
    font-weight: normal;
}

.your-offer label span {
    white-space: nowrap;
    margin-inline-start: 10px;
    font-weight: 600;
}

.your-offer input,
.your-offer textarea {
    border: none;
    outline: none;
    width: 100%;
}

.your-offer label samp {
    font-size: 30px;
}

.your-offer input {
    font-size: 30px;
}

.your-offer label:focus-within {
    border-color: var(--dark);
}

.your-offer input::placeholder {
    font-size: 20px;
}

.counter-offer {
    background-color: var(--step-shade);
    padding: 20px;
    border-radius: 10px;
}

.counter-offer p {
    display: flex;
    flex-direction: column;
    margin-top: 5px;
}

.counter-offer h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.counter-offer-wrap {
    display: flex;
    gap: 30px;
}

.counter-offer p b {
    font-size: 20px;
    font-weight: normal;
}


/* TRY WITH AI */
button.base-action.try-ai {
    background: linear-gradient(45deg, #00a1ff, #001bff);
}

button.base-action.try-ai:before {
    content: "\eb13";
    font-size: 14px;
}

label.tryai-browse {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--text-light);
    height: 250px;
    border-radius: 10px;
    cursor: pointer;
}

label.tryai-browse:hover {
    border-color: var(--text);
}

label.tryai-browse i {
    color: var(--blue);
    font-style: normal;
}

.tryai-head h1 {
    font-size: 20px;
    margin-bottom: 5px;
}

.tryai-head p {
    opacity: 0.7;
}

form.tryai-form {
    margin-top: 30px;
}

button.tryai-submit {
    background: linear-gradient(45deg, #00a1ff, #001bff);
    color: #FFF;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.tryai-consent {
    display: flex;
    gap: 10px;
    white-space: pre-wrap;
    max-width: 100%;
}

.tryai-wrap {
    border: 1px solid var(--shadow);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

button.tryai-submit:disabled {
    background: var(--text-light);
    pointer-events: none;
}

.tips {
    background-color: #fff7d1;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #f1bc5c;
    margin-top: 20px;
    color: #76561a;
    display: flex;
    gap: 0 10px;
}

button.tryai-submit:before {
    content: "\eb13";
    font-family: 'icons';
}

.tryai-browse {
    position: relative;
}

.tryai-browse input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.tryai-browse img:not([src]) {
    display: none;
}

.tryai-browse img[src]~span {
    display: none;
}

.tryai-waiting img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 100px;
    margin: 10px;
}

.tryai-waiting {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}



.tryai-waiting svg {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
}

.tryai-waiting span {
    width: 100px;
    height: 100px;
    position: relative;
}

.tryai-waiting p {
    font-size: 20px;
    font-weight: 600;
    max-width: 320px;
    text-align: center;
}

.tryai-waiting svg circle {
    cx: 15;
    cy: 15;
    r: 14;
    fill: transparent;
    stroke-width: 2px;
    stroke-dasharray: 0, 90;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash 1.5s linear infinite;
}

.tryai-userphoto {
    position: relative;
}

span.saved-icon {
    font-size: 24px;
    color: var(--green);
    position: absolute;
    inset-inline-end: 10px;
    top: 40px;
}

.saved-icon:before {
    content: "\eb26";
    font-family: icons;
}

.tryai-another a {
    color: var(--orange-dark);
    font-weight: 600;
}

.tryai-another a:hover {
    text-decoration: underline;
}

@keyframes dash {
    0% {
        stroke-dasharray: 0, 90;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 45, 90;
        stroke-dashoffset: -45;
    }

    100% {
        stroke-dasharray: 90, 90;
        stroke-dashoffset: -90;
    }

}

.tryai-result {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.tryai-result button {
    margin-top: 20px;
    width: 100%;
    padding: 20px;
    border-radius: 5px;
    color: #FFF;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    outline: none;
    opacity: 0.9;
}

.tryai-result button:hover {
    opacity: 1
}

button.tryai-regenerate {
    background: linear-gradient(45deg, #00a1ff, #001bff);
}

button.tryai-download {
    background-color: var(--green);
}

button.tryai-download:before {
    content: "\e9b3";
}

button.tryai-regenerate:before {
    content: "\eb13";
}

.tryai-result button:before {
    font-family: 'icons';
    font-weight: normal;
}

.tryai-result img {
    margin-top: 10px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.saved-selfies {
    display: flex;
    width: calc(100% + 40px);
    gap: 10px;
    overflow: auto;
    padding: 10px 20px;
    margin: 0px -20px;
    scroll-behavior: smooth;
    user-select: none;
}

.saved-selfie {
    object-fit: cover;
    border-radius: 5px;
    width: 80px;
    height: 80px;
    transition: 0.1s;
    flex-shrink: 0;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.saved-selfies img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.saved-selfies:hover .saved-selfie {
    opacity: 0.7;
}

.saved-selfie:hover {
    transform: scale(1.3);
    opacity: 1 !important;
}

button.zoom-selfie:before {
    content: "\eaf0";
    font-family: 'icons';
}

.saved-selfie button {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

button.delete-selfie:before {
    content: "\e900";
    font-family: 'icons';
}

button.delete-selfie {
    inset-inline-end: 0;
    background-color: var(--red);
    color: #FFF;
    font-size: 10px;
}

/* RESPONSIVE */
@media(max-width: 480px) {

    .add-to-cart,
    .buy-now,
    .try-ai {
        width: 100%;
        justify-content: center;
        padding: 15px 10px !important
    }

    form.product-actions {
        gap: 10px
    }

    button.tryai-submit {
        width: 100%;
    }
}