.products-page {
    width: 100%;
    margin: 2rem auto;
    padding: 0;
}

.products-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.products-intro h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.products-intro p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 أعمدة على الشاشات الكبيرة */
    gap: 1rem;
    margin-top: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
    text-align: center;
    align-self: start; /* مهم: يخلي كل بطاقة تاخد ارتفاعها الطبيعي فقط */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.specs-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.specs-btn:hover {
    background-color: #c0392b;
}

.specs-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    text-align: right;
    padding: 0 0.5rem;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
    margin: 0 -1rem -1rem;
}

.specs-content.active {
    max-height: 300px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid #eee;
}

.specs-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-content li {
    margin-bottom: 0.3rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.specs-content li:last-child {
    border-bottom: none;
}

.specs-content li strong {
    color: #e74c3c;
    margin-left: 0.3rem;
}

/* التجاوب مع أحجام الشاشات */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr); /* يظل 4 أعمدة على التابلت */
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 أعمدة على الموبايل */
    }
}