/* Page styles: stores section base styles. */

/* استایل بخش فروشگاه‌ها */
.stores-section {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.stores-section h2 {
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
}

.stores-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.store-card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.store-name {
    font-size: 0.75rem;
    color: var(--dark-gray);
    margin-top: 8px;
    display: flex;
    align-items: center;
}

.store-name i {
    margin-left: 5px;
    font-size: 0.75rem;
    color: var(--primary-color);
}

.store-actions {
    display: flex;
    gap: 10px;
}

.store-action-btn {
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.store-action-btn:hover {
    background-color: #e0e0e0;
}

.store-action-btn i {
    font-size: 14px;
}

.products-list {
    margin-top: 10px;
}

.product-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.product-item:last-child {
    border-bottom: none;
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-name {
    font-weight: 500;
}

.product-price {
    color: #4CAF50;
    font-size: 14px;
}

.empty-message {
    color: #888;
    text-align: center;
    padding: 20px;
}

.hidden {
    display: none;
}

/* استایل برای textarea */
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    min-height: 80px;
    resize: vertical;
}

