/* --------------------------------- */
/* Product Image */
/* --------------------------------- */
.product-page {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 60px;
    width: 100%;
}

.image-wrapper img,
.image-wrapper iframe {
    width: 50vh;
    height: 50vh;
    object-fit: cover;
    border-radius: 5px;
}

.image-wrapper iframe {
    pointer-events: none;
}

.image-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    position: sticky;
    top: 100px;
}

.image-wrapper p {
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 16px;
    color: #4A4A4A;
    font-weight: 600;
}

.image-wrapper p a {
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
    color: inherit;
    text-transform: capitalize;
}

.image-wrapper p a:hover {
    text-decoration: underline;
}

.image-wrapper p b {
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
    color: inherit;
    text-transform: capitalize;
}

#ytVideo {
    display: none;
}

.thumbnails {
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 12px #E6EBED;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.thumbnails .thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.thumbnails .yt-thumb {
    width: 60px;
    height: 60px;
    background-color: #416735;
    color: #FFF;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    cursor: pointer;
}

.thumbnails .thumb.active {
    filter: opacity(50%)
}

.content-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
}

.content-wrapper h1 {
    font-size: 24px;
    color: #416735;
    font-weight: 600;
    text-transform: capitalize;
}

.content-wrapper .rating {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 1px;
    color: #fb9e1c;
}

.content-wrapper .rating b {
    color: #969696;
    font-weight: 600;
    font-size: 14px;
    padding-left: 10px;
}

.content-wrapper .price {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 20px;
}

.price .mrp {
    font-size: 14px;
    text-decoration: line-through;
    color: #969696;
    font-weight: 600;
}

.price h4 {
    font-size: 16px;
    color: #416735;
    font-weight: 600;
}

.price h4 span {
    font-size: 24px;
    color: #416735;
    font-weight: 600;
}

.price .discount {
    font-size: 14px;
    background-color: #fb9e1c;
    color: #FFF;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
}

.content-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.content-toggle .active {
    background-color: #FFF;
    border: 2px solid #416735;
    color: #416735;
}

.content-container {
    height: fit-content;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.content-wrapper .content {
    background-color: #F9F9F9;
    padding: 10px;
    padding-bottom: 0px;
    border-radius: 5px;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}

.content-wrapper .content h2 {
    font-size: 18px;
    font-weight: 600;
    color: #416735;
    padding-bottom: 10px;
}

.content-wrapper .content p {
    font-size: 16px;
    font-weight: 300;
    color: #4A4A4A;
    line-height: 24px;
}

.content-wrapper .pointers {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    flex-direction: column;
}

.read-more {
    color: #1967D2;
    background-color: #F9F9F9;
    display: none;
    margin: 0px auto;
    margin-right: 0px;
}

.pointers p {
    font-size: 16px;
    color: #4A4A4A;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pointers p b {
    font-size: 16px;
    color: #416735;
    background-color: #E6EBED;
    font-weight: 600;
    padding: 1px 10px;
    border-radius: 5px;
}

.content-wrapper .add-to-cart {
    padding: 20px 0px;
}

.content-wrapper .qty {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    flex-direction: row;
    padding-bottom: 15px;
}

.content-wrapper .qty button {
    background-color: transparent;
    color: #7dab4e;
    padding: 5px 10px;
    height: fit-content;
    width: 40px;
    font-size: 18px;
    font-weight: 900;
    border: 1px solid #7dab4e;
}

.content-wrapper .qty input {
    padding: 9px 5px;
    height: fit-content;
    font-size: 14px;
    width: 60px;
    border: none;
    background-color: #E6E6E6;
    color: #000;
}

.action-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    flex-direction: row;
}

.action-wrapper .action-btns {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
    padding-top: 50px;
    position: sticky;
    top: 100px;
}

.action-wrapper button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px;
    width: 50px;
    min-height: 50px;
    height: fit-content;
    border-radius: 50px;
    border: none;
    gap: 0px;
    padding: 10px;
}

.action-btns .favorite {
    background-color: #e0474c;
    color: #FFF;
    transition: 0.3s;
}

.action-btns .favorite:hover {
    background-color: #FFF;
    color: #e0474c;
    transition: 0.3s;
    border: 1px solid #e0474c
}

.action-btns .favorite p {
    height: 0px;
    transition: 0.3s;
    color: #e0474c;
    font-weight: 600;
    overflow: hidden;
    padding-left: 0px;
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

.action-btns .favorite:hover p {
    height: 100px;
    transition: 0.3s;
}

.action-btns .share {
    background-color: #1967D2;
    color: #FFF;
}

.action-btns .share:hover {
    background-color: #FFF;
    color: #1967D2;
    transition: 0.3s;
    border: 1px solid #1967D2
}

.action-btns .share p {
    height: 0px;
    transition: 0.3s;
    color: #1967D2;
    font-weight: 600;
    overflow: hidden;
    padding-left: 0px;
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

.action-btns .share:hover p {
    height: 100px;
    transition: 0.3s;
}

.content-wrapper .buy-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.buy-btns .buy-now {
    background-color: #333333;
    color: #FFF;
    padding: 8px 25px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px;
    border: none;
    height: 40px;
    position: relative;
    border-radius: 5px;
    text-decoration: none;
}

.buy-btns .add-cart-disabled,
.buy-btns .buy-now-disabled {
    color: #969696;
}

.buy-btns .add-cart {
    background-color: #7dab4e !important;
    color: #FFF !important;
}

.sub-category {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 20px;
}

.sub-category .wrapper {
    background-color: #F9F9F9;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #CCC;
    width: 150px;
    max-width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.sub-category .wrapper.active {
    background-color: #7dab4e47;
    border: 1px solid #7dab4e;
}

.sub-category .wrapper:hover {
    border: 1px solid #7dab4e;
    transition: 0.3s;
}

.sub-category p {
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    color: #4A4A4A;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.sub-category p span {
    color: #7dab4e;
}

.sub-category .difference {
    background-color: #FFF;
    box-shadow: inset 1px 5px 20px #CCC;
    color: #4A4A4A;
    padding: 3px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sub-category h2 {
    font-size: 16px;
    color: #416735;
    font-weight: 600;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

.sub-category h3 {
    font-size: 16px;
    font-weight: 600;
    color: #4A4A4A;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
}

.sub-category h3 span {
    font-size: 14px;
    font-weight: 300;
    color: #969696;
    text-decoration: line-through;
}

@media screen and (max-width: 850px) {
    .product-page {
        flex-direction: column;
    }

    .image-wrapper img,
    .image-wrapper iframe {
        width: 100%;
        height: 36vh;
    }

    .action-wrapper .action-btns {
        padding-top: 0px;
        top: 140px;
    }

    .content-toggle {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    main {
        padding-top: 20px;
    }

    .image-wrapper iframe {
        pointer-events: all;
    }
}