/* index.css - أنماط الصفحة الرئيسية */
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, var(--iron-red), var(--metal-gray));
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--iron-gold);
    font-size: 40px;
}

.product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 24px;
    margin-bottom: 10px;
}

.product-description {
    color: #aaa;
    margin-bottom: 15px;
    flex: 1;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
    padding-right: 0;
}

.product-features li {
    padding: 5px 0;
    color: #ccc;
    position: relative;
    padding-right: 20px;
}

.product-features li:before {
    content: "✓";
    color: var(--tech-blue);
    position: absolute;
    right: 0;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price-amount {
    font-size: 28px;
    font-weight: bold;
}

.price-duration {
    color: #aaa;
    font-size: 14px;
}
/* كود ضروري لعمل الأسئلة الشائعة */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out; /* حركة ناعمة */
    opacity: 0;
}

.accordion-content.active {
    max-height: 500px; /* طول كافي للنص */
    opacity: 1;
    padding: 15px 0; /* مسافة بسيطة للنص */
}
