body{
    margin:0;
    font-family:'Montserrat', sans-serif;
    background:#f5f5f5;
}

.product-detail{
    padding:150px 60px;
}

.product-container{
    display:flex;
    gap:60px;
    align-items:flex-start;
}

/* Gallery */
.product-gallery{
    flex:1;
}

.main-image img{
    width:100%;
    border-radius:8px;
}

.thumbnail-images{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.thumbnail-images img{
    width:90px;
    cursor:pointer;
    border-radius:6px;
    transition:0.3s;
}

.thumbnail-images img:hover{
    opacity:0.7;
}

/* Product Info */
.product-info{
    flex:1;
}

.product-info h1{
    color: #0a4049;
    margin-top: -0px;
    font-size:34px;
    font-weight:500;
    margin-bottom:15px;
}

/* .rating{
    color:#c49a6c;
    font-size:18px;
    margin-bottom:15px;
}

.rating span{
    color:#666;
    font-size:14px;
} */

.price{
    font-size:26px;
    font-weight:600;
    margin-bottom:20px;
}

.description{
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.product-meta p{
    margin:8px 0;
    color:#444;
}

.color-section{
    margin-top:25px;
}

.color-section h4{
    margin-bottom:12px;
}

.colors{
    display:flex;
    gap:15px;
}

.color{
    width:28px;
    height:28px;
    border-radius:50%;
    cursor:pointer;
    border:2px solid transparent;
}

.color:hover{
    border:2px solid black;
}

.buy-btn{
    margin-top:30px;
    padding:14px 35px;
    background: #0a4049;
    color:white;
    border:none;
    cursor:pointer;
    letter-spacing:1px;
    transition:0.3s;
}

.buy-btn:hover{
    background:#333;
}

.thumbnail-images {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.thumb {
    width: 90px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

/* Active Thumbnail */
.thumb.active {
    border: 2px solid black;
}

/* Optional Hover Effect */
.thumb:hover {
    opacity: 0.8;
}

.buy-section {
    margin-top: 35px;
}

.buy-now {
    font-family: 'Montserrat', sans-serif;
    padding: 12px 30px;
    background: #d0a04f;
    color: white;
    border: none;          
    font-size: 18px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

.buy-now:hover {
    background: #0a4049;
}

/* Mobile Responsive */
@media (max-width:768px){

    .product-detail{
        padding:80px 20px;
    }

    .product-container{
        flex-direction:column;
        gap:40px;
    }

    .product-info h1{
        font-size:26px;
    }

    .price{
        font-size:22px;
    }

    .thumbnail-images img{
        width:70px;
    }

}