.product-wrap {
    padding: 80px 20px;
    background: #f6f7f9;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: start;
}

/* MEDIA */

.media-frame {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0,0,0,0.15);
}

.media-thumb,
.media-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-video {
    display: none;
}

.media-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.65);
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 18px 22px;
    border-radius: 50%;
    cursor: pointer;
}

/* SUMMARY */

.product-summary {
    position: relative;
}

.summary-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
    position: sticky;
    top: 120px;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-subtitle {
    color: #666;
    margin-bottom: 20px;
}

.product-rating {
    font-size: 14px;
    color: #444;
    margin-bottom: 25px;
}

.price-stack {
    margin-bottom: 25px;
}

.price-old {
    display: block;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 6px;
}

.price-main {
    font-size: 32px;
    font-weight: 700;
    color: #111;
}

.btn-primary {
    display: block;
    width: 100%;
    background: #111827;
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 12px;
    transition: .3s ease;
}

.btn-primary:hover {
    background: #eab308;
    color: #111;
}

.btn-secondary {
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    color: #333;
    margin-bottom: 25px;
}

.trust-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #eee;
    padding-top: 18px;
}

/* MOBILE */

@media(max-width: 992px) {

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

    .summary-card {
        position: relative;
        top: 0;
        padding: 28px;
    }

}
