/* =========================================
   Product Detail Page CSS
   Shriji Diamond / Luxury Gold Theme
========================================= */

.product-detail-font-section {
    background:
        radial-gradient(circle at top left, rgba(197, 155, 45, 0.10), transparent 28%),
        linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

/* Main Product Image */
.product-detail-image {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(197, 155, 45, 0.30);
    border-radius: 28px;
    overflow: hidden;
    padding: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 140px;
}

.product-detail-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
    display: block;
    transition: opacity 0.25s ease, transform 0.45s ease;
}

.product-detail-image:hover img {
    transform: scale(1.02);
}

/* Product Thumbnails */
.product-thumbs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-thumbs img {
    width: 86px;
    height: 86px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    border: 2px solid rgba(197, 155, 45, 0.30);
    background: #ffffff;
    padding: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-thumbs img:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow
}