body {
    font-family: 'Cairo', sans-serif;
    background-color: #f8f9fa;
}

.product-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.product-card .card-body {
    background-color: #fff;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
}

.compare-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 1rem;
}

/* صفحة المنتج */
.product-gallery img {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: border-color 0.2s;
}

.product-gallery img:hover, .product-gallery img.active {
    border-color: #0d6efd;
}

.order-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.variant-btn {
    border: 1px solid #ddd;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.2s;
}

.variant-btn.active {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #ced4da;
}

.btn-primary {
    background: linear-gradient(45deg, #000000, #333333) !important;
    border: none !important;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    color: #FFFFFF !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4) !important;
    background: linear-gradient(45deg, #333333, #555555) !important;
    color: #FFFFFF !important;
}

a.btn-primary {
    background: linear-gradient(45deg, #000000, #333333) !important;
    border: none !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
}

a.btn-primary:hover {
    background: linear-gradient(45deg, #333333, #555555) !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
}