/* =========================
   GOLDCHI FRONTEND
========================= */

.gold-price-box {
    margin-top: 10px;
    padding: 12px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: 0.2s ease;
}

.gold-price-box:hover {
    border-color: #d4af37;
    box-shadow: 0 4px 12px rgba(212,175,55,0.15);
}

/* قیمت اصلی */
.gold-price-main {
    font-size: 18px;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 8px;
}

/* جزئیات */
.gold-price-details {
    font-size: 13px;
    color: #555;
}

.gold-price-details div {
    padding: 2px 0;
    border-bottom: 1px dashed #eee;
}

.gold-price-details div:last-child {
    border-bottom: none;
}

/* عنوان محصول */
.single-product .product_title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.4;

    background: linear-gradient(135deg, #d4af37, #f7e7a1, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 12px;
    padding-right: 10px;
    border-right: 4px solid #d4af37;
}

