/*========================================
        PRODUCT GALLERY
========================================*/

.pd-gallery {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
}


/*========================================
        MAIN MEDIA
========================================*/

.pd-main-image {
    width: 100%;
    height: 680px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #faf8f6;

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid #ececec;
}


/* Dynamic media container */

#mediaContainer {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


/* Main image */

#productMainImage,
.product-main-media {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    transition: transform .5s ease;
}


/* Image hover */

.pd-main-image:hover #productMainImage {
    transform: scale(1.04);
}


/*========================================
        MAIN VIDEO
========================================*/

/*========================================
        PREMIUM MAIN VIDEO
========================================*/

.product-video-container {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #faf8f6;

    border-radius: 24px;
}


/* Main video */

#productMainVideo,
.product-main-video {

    width: 100% !important;
    height: 100% !important;

    display: block;

    object-fit: cover !important;
    object-position: center center !important;

    background: #faf8f6;

    border: none;

    margin: 0;
    padding: 0;

    border-radius: 24px;
}


/*========================================
        CENTER PLAY BUTTON
========================================*/

.video-play-button {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    color: #7c9a87;

    font-size: 20px;

    cursor: pointer;

    z-index: 20;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.16);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        opacity .3s ease;
}


/* Hover */

.video-play-button:hover {

    transform:
        translate(-50%, -50%)
        scale(1.08);

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.20);
}


/* Click */

.video-play-button:active {

    transform:
        translate(-50%, -50%)
        scale(.94);
}


/* Hide custom button while video is playing */

.product-video-container.video-playing
.video-play-button {

    opacity: 0;

    pointer-events: none;
}


/* Make sure video controls stay inside */

#productMainVideo::-webkit-media-controls {
    z-index: 10;
}


/*========================================
        THUMBNAILS
========================================*/

.pd-thumbnail-wrapper {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;

    padding: 0 2px;
}


.pd-thumbnails {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 18px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;

    scrollbar-width: none;

    padding: 8px 55px;
}


.pd-thumbnails::-webkit-scrollbar {
    display: none;
}


/*========================================
        NORMAL MEDIA THUMBNAILS
========================================*/

.pd-thumbnails .media-thumb {
    position: relative;

    flex: 0 0 110px;

    width: 110px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    overflow: hidden;

    border: 2px solid #ececec;

    background: #faf8f6;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.pd-thumbnails .media-thumb:hover {
    transform: translateY(-4px);

    border-color: #7c9a87;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .08);
}


.pd-thumbnails .media-thumb.active {
    border-color: #7c9a87;

    box-shadow:
        0 10px 25px rgba(124, 154, 135, .25);
}


/* Thumbnail images */

.pd-thumbnails .media-thumb > img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center;

    padding: 8px;

    display: block;
}


/*========================================
        VIDEO THUMBNAIL
========================================*/

.pd-thumbnails .video-thumbnail {
    position: relative;

    flex: 0 0 110px;

    width: 110px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border-radius: 18px;

    overflow: hidden;

    background: #f5f4f1;

    border: 2px solid #ececec;

    cursor: pointer;

    text-decoration: none;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.pd-thumbnails .video-thumbnail:hover {
    transform: translateY(-4px);

    border-color: #7c9a87;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .08);
}


.pd-thumbnails .video-thumbnail.active {
    border-color: #7c9a87;

    box-shadow:
        0 10px 25px rgba(124, 154, 135, .25);
}


/* Video thumbnail wrapper */

.video-thumb-wrapper {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


/* Video thumbnail */

.pd-thumbnails .video-thumb {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* Dark overlay */

.video-thumb-wrapper::after {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .10);

    pointer-events: none;
}


/*========================================
        VIDEO PLAY BUTTON
========================================*/

.pd-thumbnails .play-icon {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .96);

    color: #6f8f7d;

    font-size: 15px;

    box-shadow:
        0 4px 14px rgba(0, 0, 0, .16);

    z-index: 3;
}


.pd-thumbnails .play-icon i {
    margin-left: 2px;
}


/*========================================
        VIDEO LABEL
========================================*/

.pd-thumbnails .video-label {
    position: absolute;

    left: 8px;
    bottom: 7px;

    padding: 4px 7px;

    background: rgba(255, 255, 255, .94);

    color: #3f5147;

    border-radius: 5px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

    z-index: 4;
}


/*========================================
        THUMBNAIL ARROWS
========================================*/

.thumb-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: #fff;

    color: #222;

    box-shadow:
        0 10px 20px rgba(0, 0, 0, .12);

    cursor: pointer;

    z-index: 10;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.thumb-arrow:hover {
    background: #7c9a87;

    color: #fff;

    box-shadow:
        0 12px 25px rgba(0, 0, 0, .16);

    transform:
        translateY(-50%) scale(1.08);
}


.thumb-arrow:active {
    transform:
        translateY(-50%) scale(.95);
}


.thumb-prev {
    left: 0;
}


.thumb-next {
    right: 0;
}


/*========================================
        RESPONSIVE GALLERY
========================================*/

@media (max-width: 991px) {

    .pd-main-image {
        height: 520px;
    }

    .pd-thumbnails {
        gap: 14px;

        padding: 8px 48px;
    }

    .pd-thumbnails .media-thumb,
    .pd-thumbnails .video-thumbnail {
        flex-basis: 90px;

        width: 90px;
        height: 90px;
    }

    .thumb-arrow {
        width: 40px;
        height: 40px;
    }

}


@media (max-width: 576px) {

    .pd-main-image {
        height: 420px;

        border-radius: 18px;
    }

    .pd-thumbnails {
        gap: 12px;

        padding: 8px 44px;
    }

    .pd-thumbnails .media-thumb,
    .pd-thumbnails .video-thumbnail {
        flex-basis: 78px;

        width: 78px;
        height: 78px;

        border-radius: 14px;
    }

    .thumb-arrow {
        width: 36px;
        height: 36px;

        font-size: 13px;
    }

    .pd-thumbnails .play-icon {
        width: 32px;
        height: 32px;

        font-size: 12px;
    }

}




/*=====================================
        PRODUCT RESPONSIVE
======================================*/

@media (max-width:991px){

    .pd-info{
        margin-top:35px;
        padding:30px;
    }

    .pd-title{
        font-size:36px;
    }

    .pd-price{
        font-size:40px;
    }

    .pd-buttons{
        display:block;
        margin:28px 0 20px;
    }

    .pd-cart-btn{
        display:flex;
        align-items:center;
        justify-content:center;

        width:100%;
        height:60px;

        border-radius:16px;

        font-size:18px;
        font-weight:600;
    }

    .pd-cart-btn i{
        margin-right:10px;
    }

    .pd-wishlist-btn{
        width:100%;
        height:60px;
        margin-top:14px;
    }

}


@media (max-width:576px){

    .pd-info{
        padding:20px;
    }

    .pd-title{
        font-size:28px;
    }

    .pd-price{
        font-size:34px;
    }

    .pd-highlights{
        flex-direction:column;
    }

    .pd-highlights span{
        justify-content:center;
    }

    .pd-option{
        margin-bottom:18px;
    }

    .pd-option select{
        height:54px;
        font-size:15px;
    }

    .pd-buttons{
        margin:22px 0 18px;
    }

    .pd-cart-btn{

        display:flex;
        align-items:center;
        justify-content:center;

        width:100%;
        min-height:56px;

        padding:0 20px;

        font-size:17px;

        border-radius:14px;
    }

    .pd-cart-btn i{
        margin-right:8px;
        font-size:16px;
    }

}


/*====================================
        PRODUCT INFO
====================================*/

.pd-info{
    background:#fff;
    padding:42px;
    border:1px solid #ece8e2;
    border-radius:24px;
    height:100%;
    display:flex;
    flex-direction:column;
}

/*==============================
        TOP BAR
==============================*/

.pd-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:18px;
}

.pd-top-left{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.pd-badge,
.pd-stock-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 16px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

}

.pd-badge{
    background:#eef8f2;
    color:#6b8876;
}

.pd-stock-badge{
    background:#edf8ef;
    color:#4d8b61;
}

/*==============================
        TITLE
==============================*/

.pd-title{

    font-family:"Cormorant Garamond",serif;

    font-size:44px;

    line-height:1.15;

    color:#111;

    margin:12px 0 16px;

}

/*==============================
        RATING
==============================*/

.pd-rating{

    display:flex;

    align-items:center;

    gap:12px;

}

.pd-stars{

    display:flex;

    gap:3px;

}

.pd-stars i{

    color:#d6b35f;

    font-size:15px;

}

.pd-rating span{

    color:#777;

    font-size:14px;

}

/*==============================
        PRICE
==============================*/

.pd-price{

    font-size:48px;

    font-weight:700;

    color:#111;

    margin:20px 0;

}

/*==============================
      HIGHLIGHTS
==============================*/

.pd-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:24px;

}

.pd-highlights span{

    display:flex;

    align-items:center;

    gap:8px;

    padding:11px 18px;

    border-radius:50px;

    background:#faf8f5;

    border:1px solid #f1ede8;

    color:#666;

    font-size:13px;

    transition:.3s;

}

.pd-highlights span:hover{

    background:#f5f1ec;

}

.pd-highlights i{

    color:#7c9a87;

}

/*==============================
        DESCRIPTION
==============================*/

.pd-description{

    color:#666;

    line-height:1.9;

    margin-bottom:28px;

}

.pd-info hr{

    margin:28px 0;

    border-color:#ece8e2;

}

/*==============================
        OPTIONS
==============================*/

.pd-option{

    margin-bottom:24px;

}

.pd-option label{

    display:block;

    margin-bottom:10px;

    font-size:15px;

    font-weight:600;

    color:#222;

}

.pd-option select{

    height:58px;

    border-radius:15px;

    border:1px solid #ddd;

    box-shadow:none;

    transition:.3s;

}

.pd-option select:focus{

    border-color:#7c9a87;

    box-shadow:0 0 0 4px rgba(124,154,135,.12);

}

/*==============================
        BUTTONS
==============================*/

.pd-buttons{

    display:flex;

    align-items:stretch;

    gap:16px;

    margin:30px 0;

}

.pd-cart-btn{

    flex:1;

    height:64px;

    border:none;

    border-radius:18px;

    background:#7c9a87;

    color:#fff;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

.pd-cart-btn:hover{

    background:#6b8876;

    transform:translateY(-2px);

}

.pd-cart-btn i{

    margin-right:10px;

}

.pd-wishlist-btn{

    width:64px;

    min-width:64px;

    height:64px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    border:1px solid #ddd;

    background:#fff;

    transition:.35s;

}

.pd-wishlist-btn:hover{

    background:#faf8f5;

    border-color:#7c9a87;

}

.pd-wishlist-btn i{

    font-size:18px;

}

/*====================================
        PRODUCT FEATURES
====================================*/

.pd-delivery{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:14px;

    margin-top:28px;

    padding-top:22px;

    border-top:1px solid #ece8e2;

}

.pd-feature{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px;

    background:#faf8f5;

    border:1px solid #ece8e2;

    border-radius:16px;

    transition:.35s ease;

}

.pd-feature:hover{

    transform:translateY(-3px);

    background:#fff;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.pd-feature-icon{

    width:44px;

    height:44px;

    min-width:44px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef6f1;

}

.pd-feature-icon i{

    font-size:18px;

    color:#7c9a87;

}

.pd-feature-content{

    line-height:1.2;

}

.pd-feature-content h6{

    margin:0;

    font-size:15px;

    font-weight:700;

    color:#222;

}

.pd-feature-content p{

    margin:5px 0 0;

    font-size:12px;

    color:#777;

}

/* Tablet */

@media (max-width:991px){

    .pd-delivery{

        grid-template-columns:1fr;

    }

}

/* Mobile */

@media (max-width:576px){

    .pd-feature{

        padding:12px;

    }

    .pd-feature-icon{

        width:40px;

        height:40px;

        min-width:40px;

    }

    .pd-feature-content h6{

        font-size:14px;

    }

    .pd-feature-content p{

        font-size:12px;

    }

}
/*==============================
      OUT OF STOCK
==============================*/

.pd-out-stock{

    margin:28px 0;

    padding:16px;

    border-radius:14px;

    background:#fff4f4;

    color:#d9534f;

    font-weight:600;

    text-align:center;

}

/*==============================
      RESPONSIVE
==============================*/

@media(max-width:991px){

    .pd-info{

        margin-top:35px;

        padding:30px;

    }

    .pd-title{

        font-size:36px;

    }

    .pd-price{

        font-size:40px;

    }

    .pd-buttons{

        flex-direction:column;

    }

    .pd-wishlist-btn{

        width:100%;

        height:60px;

    }

}

@media(max-width:576px){

    .pd-info{

        padding:24px;

    }

    .pd-title{

        font-size:30px;

    }

    .pd-price{

        font-size:34px;

    }

    .pd-highlights{

        flex-direction:column;

    }

    .pd-highlights span{

        justify-content:center;

    }

}








/*====================================
        REVIEW FORM
====================================*/

.pd-review-form{

    margin:70px auto;

    max-width:900px;

    background:#fff;

    border:1px solid #ece8e2;

    border-radius:28px;

    padding:40px;

    box-shadow:0 18px 50px rgba(0,0,0,.05);

}

.pd-review-header{

    text-align:center;

    margin-bottom:30px;

}

.pd-review-header span{

    color:#7c9a87;

    font-size:12px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.pd-review-header h2{

    font-family:"Cormorant Garamond",serif;

    font-size:44px;

    line-height:1.1;

    margin:10px 0;

    color:#111;

}

.pd-review-header p{

    max-width:600px;

    margin:auto;

    color:#777;

    line-height:1.8;

}

.pd-review-group{

    margin-bottom:30px;

}

.pd-review-group label{

    display:block;

    margin-bottom:12px;

    font-weight:600;

    color:#222;

}

.pd-review-group .form-control{

    height:58px;

    border-radius:16px;

    border:1px solid #ddd;

    box-shadow:none;

    transition:.35s;

}

.pd-review-group textarea.form-control{

    min-height:150px;

    resize:none;

    padding-top:18px;

}

.pd-review-group .form-control:focus{

    border-color:#7c9a87;

    box-shadow:0 0 0 4px rgba(124,154,135,.12);

}

.pd-review-btn{

    width:100%;

    height:62px;

    border:none;

    border-radius:18px;

    background:#7c9a87;

    color:#fff;

    font-size:16px;

    font-weight:600;

    transition:.35s;

}

.pd-review-btn:hover{

    background:#6d8774;

    transform:translateY(-2px);

}

.pd-review-btn i{

    margin-right:10px;

}

.pd-login-box{

    padding:18px;

    margin-top:18px;

    border-radius:16px;

    background:#faf8f5;

    text-align:center;

    color:#666;

}

.pd-login-box a{

    color:#7c9a87;

    font-weight:600;

}

.pd-demo-note{

    margin-top:10px;

    padding:14px 20px;

    border-radius:14px;

    background:#fff8eb;

    color:#99763b;

    font-size:14px;

}

.pd-demo-note i{

    margin-right:8px;

}

@media(max-width:768px){

.pd-review-form{

padding:28px;

}

.pd-review-header h2{

font-size:36px;

}

}



/*=========================================
        CUSTOMER REVIEWS
=========================================*/

.pd-review-list{

margin-top:70px;

}

.pd-review-header{

text-align:center;

margin-bottom:50px;

}

.pd-section-tag{

display:inline-block;

padding:8px 18px;

border-radius:30px;

background:#eef8f2;

color:#6f9079;

font-size:12px;

font-weight:700;

letter-spacing:2px;

margin-bottom:16px;

}

.pd-review-header h2{

font-family:"Cormorant Garamond",serif;

font-size:46px;

margin-bottom:12px;

color:#111;

}

.pd-review-header p{

color:#777;

margin-bottom:22px;

font-size:16px;

}

.pd-review-summary{

display:flex;

justify-content:center;

align-items:center;

gap:14px;

font-size:16px;

color:#666;

}

.pd-review-stars{

color:#d6b35f;

font-size:18px;

}


/*==================================
      review IMAGE UPLOAD
==================================*/

.pd-review-upload{

margin-top:30px;

}

.pd-review-upload label{

display:block;

font-weight:600;

margin-bottom:12px;

color:#111;

}

.pd-review-upload label span{

color:#777;

font-weight:400;

}

.pd-upload-box{

position:relative;

border:2px dashed #d7d7d7;

border-radius:18px;

background:#faf8f5;

padding:35px;

text-align:center;

cursor:pointer;

transition:.3s;

overflow:hidden;

}

.pd-upload-box:hover{

border-color:#7c9a87;

background:#f6fbf7;

}

.pd-upload-box input{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

opacity:0;

cursor:pointer;

}

.pd-upload-content i{

font-size:42px;

color:#7c9a87;

margin-bottom:15px;

}

.pd-upload-content h6{

font-size:18px;

margin-bottom:8px;

}

.pd-upload-content p{

margin:0;

color:#777;

font-size:14px;

}

.pd-preview-gallery{

display:flex;

gap:12px;

flex-wrap:wrap;

margin-top:20px;

}

.pd-preview-gallery img{

width:90px;

height:90px;

object-fit:cover;

border-radius:14px;

border:1px solid #ddd;

}



/* Review Card */

.pd-review-card{

background:#fff;

border:1px solid #ece8e2;

border-radius:22px;

padding:28px;

margin-bottom:24px;

transition:.35s;

}

.pd-review-card:hover{

transform:translateY(-5px);

box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.pd-review-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:22px;

gap:20px;

flex-wrap:wrap;

}

.pd-review-user{

display:flex;

align-items:center;

gap:16px;

}

.pd-review-avatar{

width:58px;

height:58px;

border-radius:50%;

background:#7c9a87;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

font-size:18px;

font-weight:700;

}

.pd-review-user h5{

margin:0;

font-size:18px;

color:#111;

}

.pd-review-user span{

color:#888;

font-size:14px;

}

.pd-review-rating{

color:#d6b35f;

font-size:18px;

}

.pd-review-title{

margin-bottom:14px;

font-size:22px;

font-weight:600;

color:#111;

}

.pd-review-text{

line-height:1.9;

color:#666;

margin-bottom:24px;

}

/*==============================
      REVIEW IMAGES
==============================*/

.pd-review-images{

    display:flex;

    gap:14px;

    flex-wrap:wrap;

    margin:20px;

}

.pd-review-image{

    width:110px;

    height:110px;

    object-fit:cover;

    border-radius:14px;

    border:1px solid #ece8e2;

    transition:.35s;

    cursor:pointer;

}

..pd-review-image:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(0,0,0,.12);

}
.pd-review-footer{

padding-top:18px;

border-top:1px solid #eee;

}

.pd-review-footer span{

display:inline-flex;

align-items:center;

gap:8px;

color:#6f9079;

font-weight:600;

}

.pd-review-footer i{

color:#7c9a87;

}



/* Empty */

.pd-no-review{

background:#fff;

padding:70px 30px;

border-radius:22px;

border:1px solid #ece8e2;

text-align:center;

}

.pd-no-review i{

font-size:55px;

color:#7c9a87;

margin-bottom:18px;

}

.pd-no-review h4{

margin-bottom:12px;

font-family:"Cormorant Garamond",serif;

font-size:36px;

}

.pd-no-review p{

color:#777;

}



/* Mobile */

@media(max-width:768px){

.pd-review-top{

flex-direction:column;

align-items:flex-start;

}

.pd-review-header h2{

font-size:36px;

}

}


.related-products-section{

    padding:100px 0;

}

.related-products-section .section-title{

    margin-bottom:50px;

}

.related-products-section span{

    color:#8BA18E;

    letter-spacing:3px;

    font-size:13px;

    font-weight:600;

}

.related-products-section h2{

    font-size:48px;

    margin:15px 0;

    font-family:'Playfair Display',serif;

}

.related-products-section p{

    color:#777;

}

.related-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

    border:1px solid #eee;

}

.related-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.related-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.4s;

}

.related-card:hover img{

    transform:scale(1.05);

}

.related-content{

    padding:20px;

}

.related-rating{

    color:#c7a550;

    font-weight:600;

    margin-bottom:10px;

}

.related-content h5{

    font-size:18px;

    margin-bottom:10px;

}

.related-content h5 a{

    color:#111;

    text-decoration:none;

}

.related-price{

    font-size:24px;

    font-weight:700;

    margin-bottom:20px;

}

.btn-view{

    display:block;

    width:100%;

    text-align:center;

    padding:12px;

    border-radius:10px;

    background:#8BA18E;

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.btn-view:hover{

    background:#738875;

    color:#fff;

}


/* =========================================
   PRODUCT VIDEO THUMBNAIL
   ========================================= */

.video-thumbnail {
    position: relative;
    display: block;
    width: 84px;
    height: 104px;
    overflow: hidden;
    border-radius: 14px;
    background: #f5f4f1;
    border: 2px solid transparent;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.video-thumbnail:hover {
    transform: translateY(-2px);
    border-color: #8aa995;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.video-thumbnail.active {
    border-color: #7f9f8b;
    box-shadow: 0 4px 14px rgba(127, 159, 139, 0.18);
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark overlay */
.video-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

/* Play button */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #6f8f7d;

    font-size: 13px;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);

    z-index: 2;
}

.play-icon i {
    margin-left: 2px;
}

/* VIDEO label */
.video-label {
    position: absolute;
    left: 7px;
    bottom: 6px;

    padding: 3px 6px;

    background: rgba(255, 255, 255, 0.92);
    color: #3f5147;

    border-radius: 5px;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;

    z-index: 3;
}
