.product-details{
    background:#ffffff;
}

/* Product Image */
.product-image-box{
    background:#fff8f1;
    border-radius:20px;
    padding:20px;
    text-align:center;
}

/* Titles */
.product-title{
    font-size:30px;
    font-weight:700;
    color:#222;
}

.product-subtitle{
    color:#555;
    margin:10px 0 20px;
}

/* Price */
.price-box{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.price{
    font-size:28px;
    font-weight:700;
    color:#2EA9B4;
}

.duration{
    background:#fff3e0;
    padding:6px 14px;
    border-radius:20px;
    font-size:14px;
}

/* Highlights */
.highlights{
    list-style:none;
    padding:0;
    margin-bottom:25px;
}

.highlights li{
    margin-bottom:8px;
    color:#444;
}

/* CTA Buttons */
.btn-primary{
    background:#2EA9B4;
    border-color:#2EA9B4;
}

.btn-primary:hover{
    background:#286d74;
}

.btn-outline-primary{
    color:#2EA9B4;
    border-color:#2EA9B4;
}

.btn-outline-primary:hover{
    background:#2EA9B4;
    color:#fff;
}

.cta-group{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* Delivery */
.delivery-note{
    margin-top:15px;
    font-size:14px;
    color:#666;
}

/* Tabs */
.nav-tabs .nav-link{
    font-weight:600;
    color:#555;
}

.nav-tabs .nav-link.active{
    color:#2EA9B4;
}

.tab-content{
    background:#ffffff;
    border-radius:0 0 18px 18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* Quantity */
.quantity-box{
    margin-top:20px;
}

.qty-control{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:6px;
}

.qty-control button{
    width:40px;
    height:40px;
    border:none;
    background:#21acac;
    color:#fff;
    font-size:20px;
    border-radius:8px;
}

.qty-control input{
    width:60px;
    text-align:center;
    border:1px solid #ddd;
    border-radius:6px;
    height:40px;
}

/* Product Gallery */
.product-gallery{
    background:#fff;
    border-radius:20px;
    padding:20px;
}

.main-image{
    text-align:center;
}

.main-image img{
    max-height:420px;
    object-fit:contain;
    transition:transform .4s ease;
}

.main-image img:hover{
    transform:scale(1.08);
}

/* Thumbnails */
.thumbnail-row{
    display:flex;
    gap:12px;
    margin-top:15px;
    justify-content:center;
}

.thumbnail{
    width:70px;
    height:70px;
    object-fit:contain;
    border-radius:10px;
    padding:6px;
    border:2px solid transparent;
    cursor:pointer;
    background:#fff;
    transition:all .3s ease;
}

.thumbnail:hover{
    border-color:#21acac;
}

.thumbnail.active{
    border-color:#21acac;
    box-shadow:0 6px 15px rgba(20,166,132,0.3);
}

/* Trust Badges */
.trust-badges{
    display:flex;
    gap:20px;
    margin-top:20px;
    flex-wrap:wrap;
}

.badge-item{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    background:#f7fafc;
    padding:8px 12px;
    border-radius:8px;
}

.badge-item i{
    color:#2EA9B4;
    font-size:18px;
}

/* Reviews */
.reviews-section{
    background:#f8fbfd;
}

.reviews-title{
    font-weight:700;
    font-size:32px;
    color:#222;
}

.review-card{
    background:#fff;
    padding:25px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}

.review-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.review-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2EA9B4,#66d9e8);
}

.review-stars{
    color:#ffc107;
    margin-bottom:12px;
    font-size:18px;
}

.review-text{
    font-size:15px;
    color:#555;
    line-height:1.6;
    margin-bottom:20px;
}

.review-user{
    display:flex;
    align-items:center;
    gap:12px;
}

.review-user img{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
}

.review-user h6{
    margin:0;
    font-weight:600;
}

.review-user span{
    font-size:13px;
    color:#2EA9B4;
}

.review-user i{
    margin-right:4px;
}

/* Responsive */
@media (max-width:768px){
    .product-title{
        font-size:24px;
    }
}

@media (max-width:576px){
    .thumbnail{
        width:60px;
        height:60px;
    }

    .main-image img{
        max-height:300px;
    }
}