/* TINOX – STYLE PRODUCT */

html{
    scroll-behavior:smooth;
}
 
/* PRODUCT LAYOUT */
.qm-product-block{
    display:grid;
    grid-template-columns:1.3fr 0.7fr;
    gap:140px;
    padding:120px 0 40px;
    align-items:start;
}
 
/* PRODUCT LEFT – IMAGE */
.qm-product-left img{
    width:100%;
    border-radius:20px;
    transition:.4s ease;
}

.qm-product-left img:hover{
    transform:scale(1.02);
}
 
/* PRODUCT RIGHT */
.qm-product-right{
    position:sticky;
    top:140px;
}

.qm-title{
    font-size:64px;
    font-weight:900;
    letter-spacing:1px;
    line-height:1.05;
    margin-bottom:40px;
}
 
/* PRICE */
.qm-price-block{
    margin-bottom:40px;
}

.qm-price-label{
    display:block;
    font-size:12px;
    letter-spacing:3px;
    color:#777;
    margin-bottom:8px;
}

.qm-price{
    font-size:36px;
    font-weight:800;
}
 
/* VARIANT SELECT */
.qm-variant-dropdown{
    width:100%;
    padding:16px;
    background:#0e0e0e;
    border:1px solid #222;
    border-radius:12px;
    color:#fff;
    font-size:14px;
    transition:.3s;
    margin-bottom:30px;
}

.qm-variant-dropdown:hover{
    border-color:#f5c518;
}

.qm-variant-dropdown:focus{
    outline:none;
    border-color:#f5c518;
}
 
/* QUANTITY */
.qm-product-right label{
    font-size:12px;
    letter-spacing:2px;
    color:#777;
    margin-bottom:10px;
    display:block;
}

.qm-qty-control{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:40px;
}

.qm-qty-control button{
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid #333;
    background:#111;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    transition:.3s;
}

.qm-qty-control button:hover{
    background:#f5c518;
    color:#000;
}

#qty-label{
    font-size:22px;
    font-weight:600;
    min-width:30px;
    text-align:center;
}

/* CTA BUTTON */
.qm-product-button{
    width:100%;
    padding:24px;
    background:#f5c518;
    color:#000;
    font-weight:900;
    font-size:18px;
    border-radius:12px;
    border:none;
    margin-bottom:25px;
    transition:.3s ease;
}

.qm-product-button:hover{
    background:#ffd900;
    transform:translateY(-4px);
}

.qm-product-button:disabled{
    cursor:not-allowed;
    transform:none;
}

/* BENEFITS */
.qm-benefits{
    font-size:14px;
    color:#aaa;
    display:flex;
    flex-direction:column;
    gap:10px;
}

/* PRODUCT DESCRIPTION SECTION */
.qm-product-description{
    padding: 20px 0 100px;
    background:#111;
}

.qm-product-description .container{
    max-width:1000px;
}

.qm-product-description h2{
    font-size:40px;
    margin-bottom:30px;
}

.qm-product-description p{
    font-size:18px;
    line-height:1.7;
    color:#ccc;
}

/* GALLERY */
.qm-gallery{
    display:flex;
    flex-direction:column;
}


/* MAIN IMAGE */
.qm-main-image-wrapper{
    position:relative;
    width:100%;
    aspect-ratio:4 / 5;
    background:#0e0e0e;
    overflow:hidden;
    border-radius:20px;
    cursor:zoom-in;
    display:flex;
    align-items:center;
    justify-content:center;
}

.qm-main-image{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    transition:transform .4s ease;
}

.qm-main-image-wrapper:hover .qm-main-image{
    transform:scale(1.05);
}

/* THUMBNAILS */
.qm-gallery-thumbs{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.qm-gallery-thumbs img{
    width:80px;
    border-radius:10px;
    cursor:pointer;
    opacity:.6;
    transition:.3s;
}

.qm-gallery-thumbs img:hover{
    opacity:1;
    transform:scale(1.05);
}

.qm-thumb{
    width:90px;
    aspect-ratio:1 / 1;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    opacity:.6;
    transition:.3s;
    border:2px solid transparent;
}

.qm-thumb:hover{
    opacity:1;
    transform:scale(1.05);
}

.qm-thumb.active{
    opacity:1;
    border-color:#f5c518;
}
 
/* LIGHTBOX */
.qm-lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.qm-lightbox img{
    max-width:85%;
    max-height:85%;
}

.qm-lightbox-close{
    position:absolute;
    top:30px;
    right:40px;
    font-size:40px;
    cursor:pointer;
}

.qm-lightbox-arrow{
    position:absolute;
    background:none;
    border:none;
    color:#fff;
    font-size:40px;
    cursor:pointer;
}

.qm-lightbox-arrow.left{
    left:40px;
}

.qm-lightbox-arrow.right{
    right:40px;
}
 
/* DESCRIPTION NAVIGATION */
.qm-desc-nav{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
}

.qm-desc-btn{
    padding:10px 18px;
    border:1px solid #333;
    border-radius:8px;
    text-decoration:none;
    color:#aaa;
    font-size:14px;
    transition:.25s;
    white-space:nowrap;
}

.qm-desc-btn:hover{
    border-color:#f5c518;
    color:#f5c518;
}

/* DESCRIPTION BLOCKS */
.qm-desc-block{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:80px;
    align-items:center;
    padding: 80px 0;
}

.qm-desc-block.reverse{
    direction:rtl;
}

.qm-desc-block.reverse *{
    direction:ltr;
}

.qm-desc-text h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
}

.qm-desc-text p{
    font-size:18px;
    line-height:1.7;
    color:#ccc;
    text-align:justify;
    text-justify:inter-word;
}

.qm-desc-image{
    width:100%;
}

.qm-desc-image img{
    width:100%;
    display:block;
    border-radius:20px;
}

.qm-desc-block img,
.qm-desc-full-image img{
    transition:transform .5s ease;
}

.qm-desc-block img:hover,
.qm-desc-full-image img:hover{
    transform:scale(1.04);
}

/* FULL WIDTH IMAGE */
.qm-desc-full-image{
    width:100%;
    display:flex;
    justify-content:center;
    padding: 80px 0;
}

.qm-desc-full-image img{
    width:100%;
    max-width:1200px;
    display:block;
    border-radius:20px;
}
 
/* TECH SPECS */
.qm-specs-section{
    padding:80px 0;
}

.qm-specs-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:120px;
    align-items:start;
}

.qm-specs-title h2{
    font-size:48px;
    font-weight:900;
    margin-bottom:20px;
}

.qm-specs-title p{
    color:#aaa;
    font-size:18px;
}

.qm-specs-table table{
    width:100%;
    border-collapse:collapse;
}

.qm-specs-table td{
    padding:18px 0;
    border-bottom:1px solid #222;
    font-size:17px;
}

.qm-specs-table td:first-child{
    color:#888;
}

.qm-specs-table td:last-child{
    text-align:right;
    font-weight:600;
    color:#fff;
}

/* GOLD TEXT */
.gold{
    color:#f5c518;
}

/* COMPATIBILITY TABLE */

.qm-compat-section{
    padding:80px 0;
}

.qm-compat-intro{
    max-width:700px;
    margin-bottom:60px;
    color:#aaa;
}

.qm-compat-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:60px;
}

.qm-compat-table h3{
    font-size:20px;
    margin-bottom:20px;
    color:#f5c518;
}

.qm-compat-table table{
    width:100%;
    border-collapse:collapse;
}

.qm-compat-table td{
    padding:10px 0;
    border-bottom:1px solid #222;
    color:#ccc;
    font-size:15px;
}

/* WARNING SECTION */
.qm-warning-section{
    padding:80px 0;
}

.qm-warning-box{
    max-width:1000px;
    margin:0 auto;
}

.qm-warning-box{
    background:#0e0e0e;
    border:1px solid #222;
    border-radius:16px;
    padding:40px;
}

.qm-warning-box h2{
    font-size:36px;
    margin-top: 0px;
    margin-bottom:30px;
}

/* LIST */
.qm-warning-list{
    list-style:none;
    padding:0;
    margin:0;
}

.qm-warning-list li{
    position:relative;
    padding-left:36px;
    margin-bottom:16px;
    color:#ccc;
    font-size:16px;
    line-height:1.6;
}

/* triangle icon */
.qm-warning-list li::before{
    content:"⚠";
    position:absolute;
    left:0;
    top:0;
    color:#f5c518;
    font-size:18px;
}

@media (max-width:900px){

    .qm-compat-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

}

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

    .qm-product-block{
        grid-template-columns:1fr;
        gap:60px;
    }

    .qm-product-right{
        position:relative;
        top:0;
    }

    .qm-title{
        font-size:42px;
    }

    .qm-desc-text p{
        text-align:left;
    }


}

@media (max-width:900px){

    .qm-lightbox-arrow.right {
        right: 10px;
    }

    .qm-lightbox-arrow.left {
        left: 10px;
    }

    .qm-desc-block{
        grid-template-columns:1fr;
        gap:40px;
    }

    .qm-desc-block.reverse{
        direction:ltr;
    }

    .qm-desc-text h2{
        font-size:32px;
    }

    .qm-specs-grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    .qm-specs-table td:last-child{
        text-align:left;
    }

    .qm-warning-box{
        padding:24px 18px;
        border-radius:12px;
    }

    .qm-warning-box h2{
        font-size:28px;
        line-height:1.2;
        word-break:break-word;
    }

    .qm-warning-list li{
        font-size:15px;
        padding-left:30px;
    }

}