/* Item */

.item .item-block {
    width: var(--width);
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    gap: 80px;
}

.item .item-block .gallery {
    width: 100%;
}

.item .item-block .gallery h5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.item .item-block .gallery h5 a:last-child {
    color: #11111199;
}

.item .item-block .gallery .photos {
    margin-top: 25px;
    display: grid;
}

.item .item-block .gallery .photos .big {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1.5 / 1;
}

.item .item-block .gallery .photos .list {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.item .item-block .gallery .photos .list img {
    pointer-events: all;
    cursor: pointer;
    transition: var(--transition);
    width: calc((100% - 10px * 3) / 4);
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1.35 / 1;
}

.item .item-block .gallery .photos .list img:hover {
    opacity: var(--opacity);
}

.item .item-block .gallery .photos .list img:active {
    opacity: var(--opacity-2);
}

.item .item-block .info {
    width: 100%;
}

.item .item-block .info h4 {
    font-size: 14px;
    font-weight: 500;
    color: #11111180;
}

.item .item-block .info h1 {
    margin-top: 15px;
    font-size: 36px;
    font-weight: 500;
}

.item .item-block .info h1 span {
    position: relative;
    background-color: var(--accent);
    color: var(--text-2);
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 32px;
    display: inline;
    text-align: center;
    margin-left: 12px;
    bottom: 3px;
}

.item .item-block .info h2 {
    margin-top: 25px;
    font-size: 14px;
    font-weight: 400;
    color: #111111CC;
}

.item .item-block .info h2 b {
    font-weight: 500;
}

.item .item-block .info h2:last-of-type {
    margin-top: 10px;
}

.item .item-block .info .select {
    background-color: #F8F8F8;
    margin-top: 30px;
    display: flex;
}

.item .item-block .info .select .select-block {
    position: relative;
    width: calc(100% / 3);
    border-right: 1px solid #D7D7D7AA;
}

.item .item-block .info .select .select-block .preview {
    position: absolute;
    top: 15px;
    left: 25px;
    color: #11111180;
    font-weight: 600;
    font-size: 14px;
}

.item .item-block .info .select .select-block .custom-select {
    transition: var(--transition);
    width: 100%;
    color: var(--text);
    caret-color: var(--text);
}

.item .item-block .info .select .select-block .select-button {
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 0;
    background: none;
    color: var(--text);
    padding: 15px 25px;
    padding-top: 40px;
}

.item .item-block .info .select .select-block .selected-value {
    font-size: 20px;
    font-weight: 600;
}

.item .item-block .info .select .select-block .selected-value svg {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

.item .item-block .info .select .select-block .arrow {
    transition: var(--transition);
}

.item .item-block .info .select .select-block .select-dropdown {
    border: 1px solid #D7D7D750;
    transition: var(--transition);
    position: absolute;
    z-index: 1;
    list-style: none;
    width: calc(100% - 25px * 2);
    background-color: #F9F9F9;
    padding: 15px 25px;
    left: -1px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    display: grid;
    gap: 6px;
}

.item .item-block .info .select .select-block .select-dropdown li label {
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    align-items: center;
    opacity: var(--opacity);
    font-weight: 600;
    font-size: 18px;
}

.item .item-block .info .select .select-block .select-dropdown li:hover label,
.item .item-block .info .select .select-block .select-dropdown input:checked~label,
.item .item-block .info .select .select-block .select-dropdown input:focus~label {
    opacity: 1;
}

.item .item-block .info .select .select-block .select-dropdown input[type="radio"] {
    position: absolute;
    left: 0;
    opacity: 0;
}

.item .item-block .info .select .select-block .custom-select.active .arrow {
    transform: rotate(180deg);
}

.item .item-block .info .select .select-block .custom-select.active .select-dropdown {
    opacity: 1;
    pointer-events: all;
}

.item .item-block .info .select .select-block:has(.custom-select.disabled) {
    cursor: not-allowed;
}

.item .item-block .info .select .select-block .custom-select.disabled {
    pointer-events: none;
    opacity: var(--opacity-2);
}

.item .item-block .info .select .price {
    width: calc(100% / 3);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 600;
}

.item .item-block .info .manage {
    margin-top: 25px;
    display: flex;
    gap: 20px;
}

.item .item-block .info .manage button {
    width: 100%;
    background-color: var(--text);
    font-size: 18px;
    font-weight: 700;
}

.item .item-block .info .manage button.alternative {
    background-color: var(--background);
    color: var(--text);
    border: 1px solid #E3E3E3;
}

.item .item-block .info .manage button.alternative:hover {
    border-color: transparent;
    opacity: 1;
    background-color: var(--text);
    color: var(--text-2);
}

.item .item-block .info .manage button.alternative:active {
    opacity: var(--opacity);
}

.item .showcase-title {
    width: var(--width);
    max-width: var(--max-width);
    margin: auto;
    margin-top: 35px;
    font-size: 32px;
}

.item .showcase-title:first-of-type {
    margin-top: 70px;
}

.item .showcase {
    display: flex;
    width: var(--width);
    max-width: var(--max-width);
    margin: auto;
    margin-top: 35px;
    gap: 20px;
}

.item .showcase .item {
    position: relative;
    width: 100%;
    display: grid;
    gap: 15px;
}

.item .showcase .item:hover {
    opacity: 1;
}

.item .showcase .item:hover img {
    padding: 35px;
    width: calc(100% - 35px * 2);
}

.item .showcase .item:active {
    opacity: var(--opacity);
}

.item .showcase .item img {
    transition: var(--transition);
    width: calc(100% - 50px * 2);
    background-color: #F8F8F8;
    padding: 50px;
    aspect-ratio: 1 / 1;
}

.item .showcase .item .up {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 10px * 2);
    padding: 15px 10px;
}

.item .showcase .item .up span {
    background-color: var(--background);
    font-size: 18px;
    font-weight: 700;
    border-radius: 32px;
    padding: 6px 18px;
}

.item .showcase .item .up span.alternative {
    background-color: var(--text);
    color: var(--background);
}

.item .showcase .item .up span.empty {
    opacity: 0;
    pointer-events: none;
}

.item .showcase .item .up .wish:hover {
    opacity: var(--opacity);
}

.item .showcase .item .up .wish:active {
    opacity: var(--opacity-2);
}

.item .showcase .item .name {
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 10px;
}

.item .showcase .item .name div h4 {
    color: var(--accent);
    font-weight: 500;
    font-size: 14px;
}

.item .showcase .item .name div h3 {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 500;
}

.item .showcase .item .name h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-wrap: nowrap;
}

.item .showcase .item .name h2.old {
    position: absolute;
    right: 10px;
    margin-top: 48px;
    font-size: 16px;
    font-weight: 600;
    color: #11111199;
    -webkit-text-decoration: line-through #11111150;
    text-decoration: line-through #11111150;
}