*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.product-navigator {
    position: sticky;
    top: 80vh;
    left: 100%;
    width: fit-content;
    background-color: transparent;
    z-index: 100;
}

.product-navigator a {
    display: flex;
    flex-direction: row-reverse;
}

.product-navigator .arrow {
    width: 35px;
    height: 80px;
    background-color: var(--color-theme);
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-navigator .image {
    width: 80px;
    height: 80px;
}

.product-navigator .image img {
    width: 100%;
    height: 100%;
}

.product-navigator .desc {
    width: 190px;
    height: 80px;
    padding: 6px 15px;
    /* min-height: 68px; */
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: -335px;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.product-navigator:hover .desc {
    margin-right: 0px;
    visibility: visible;
}

.product-navigator .desc .title {
    color: var(--color-black);
    margin-bottom: 3px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);;
}

.product-navigator .desc .date {
    color: var(--color-light-gray);
    font-size: 0.875rem;
}

.product-hero {
    margin-top: -216px;
}

.product-hero img {
    width: 100%;
    object-fit: contain;
}

.product-details {
    padding: 120px 80px 80px;
    width: 70%;
}

.product-details .title {
    color: var(--color-black);
}

.product-details .table {
    margin-top: 50px;
}

.product-details .table .row {
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
}

.product-details .table .row .col-1 {
    flex: 2;
}

.product-details .table .row .col-2 {
    flex: 5;
}

.product-details .table .row .col-2 p {
    margin-bottom: 0px;
    font-size: 0.875rem;
}

.product-details .table .row .col-2 .link {
    background-color: var(--color-theme);
    color: #fff;
    padding: 10px 20px;
    transition: color .1s ease-in-out, background-color .1s ease-in-out
}

.product-details .table .row .col-2 .link:hover {
    background-color: #c28d2b;
    color: #fafafa;
}


.product-details .table .row:nth-child(1) .col-2 {
    display: flex;
    gap: 8px;
}

.product-image {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.product-image .wrapper {
    width: calc(40% - 12px);
    overflow: hidden;
}

.product-image .wrapper:last-child {
    width: 80%;
}

.product-image .wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in;
}

.product-image .wrapper img:hover {
    transform: scale(1.1);
}

.product-bottom-hero {
    width: 100%;
    padding-top: 100px;
    margin: auto;
}

.product-bottom-hero img {
    width: 100%;
    display: block;
}

@media(max-width:960px) {
    .product-details {
        width: 80%;
    }
}
@media(max-width:768px) {
    .product-navigator {
        display: none;
    }
    .product-hero {
        margin-top: 0px;
    }
    .product-details {
        padding: 80px 30px 60px;
        width: 100%;
    }
    .product-image .wrapper,
    .product-image .wrapper:last-child {
        width: 90%;
    }
}
