/* public/css/product.css — استایل صفحه جزئیات محصول */

body { background-color: #f8f9fa; font-family: 'Vazirmatn', sans-serif; }

.product-container { background: #fff; border-radius: 25px; box-shadow: 0 10px 40px rgba(0,0,0,0.03); overflow: hidden; }

/* رادیو باتن‌های متغیر */
.variation-options { display: flex; flex-wrap: wrap; gap: 10px; }
.var-radio { display: none; }
.var-label { border: 2px solid #e2e8f0; border-radius: 12px; padding: 8px 18px; cursor: pointer; transition: 0.3s; color: #4a5568; font-weight: bold; }
.var-radio:checked + .var-label { border-color: #4e73df; background: #f0f4ff; color: #4e73df; box-shadow: 0 4px 12px rgba(78,115,223,0.15); }

/* باکس خرید و قیمت */
.buy-box { background: #fff; border: 1px solid #edf2f7; border-radius: 20px; padding: 20px; position: sticky; top: 20px; }
.price-text { font-size: 2rem; font-weight: 900; color: #2d3748; }

/* کنترل تعداد */
.qty-selector { display: flex; align-items: center; justify-content: center; background: #f1f3f9; border-radius: 12px; padding: 5px; width: 140px; margin: 0 auto; }
.qty-btn { border: none; background: #fff; width: 35px; height: 35px; border-radius: 10px; font-weight: bold; cursor: pointer; transition: 0.2s; }
.qty-btn:hover { background: #4e73df; color: #fff; }
.qty-input { border: none; background: transparent; text-align: center; width: 50px; font-weight: bold; font-size: 1.1rem; }

.video-box { border-radius: 20px; overflow: hidden; background: #000; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.btn-add-cart { background: #4e73df; border: none; border-radius: 15px; font-weight: bold; padding: 15px; transition: 0.3s; }
.btn-add-cart:hover:not([disabled]) { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(78,115,223,0.3); }

/* ویدیو پلیر */
.video-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}
.video-card:hover { box-shadow: 0 15px 45px rgba(0,0,0,0.08) !important; }
.video-header { background: #f8fafc; border-bottom: 1px solid #edf2f7; }
.video-dot { width: 12px; height: 12px; border-radius: 50%; margin-left: 6px; }
.video-dot.red { background: #ff5f56; }
.video-dot.yellow { background: #ffbd2e; }
.video-dot.green { background: #27c93f; }
.video-body {
    background: #1a202c !important;
    display: flex;
    justify-content: center;
}

/* اسلایدر محصولات پیشنهادی */
.similar-card {
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid #f1f5f9 !important;
}
.similar-card img {
    height: 120px !important;
    object-fit: contain;
    padding: 10px;
}
