:root {
    --bs-body-bg: #fff;
}

body {
    background-color: #f8f9fa;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

.sticky-top {
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* ====== قائمة المنتجات (عمودي، فاصل صغير) ====== */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-card {
    transition: box-shadow 0.15s ease;
}

.product-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}

.badge-ribbon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.price-old {
    color: #adb5bd;
    text-decoration: line-through;
}

.qr-box img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.spec-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eef4ff;
    color: #0d6efd;
}